.mentor-badge {
    width: 120px;
}

/* .rewards-of-marketing-mentorship {
    overflow: hidden;
    padding: 80px 0;
} */

.rewards-of-marketing-mentorship h2 {
    margin-top: 0;
}

.rewards-of-marketing-mentorship p {
    font-size: 16px;
    font-weight: 400;
}

/* Steps */
.steps {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: visible;
}

.step-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(16, 30, 54, 0.04);
    padding: 24px 28px;
    text-align: left;
    position: relative;
    flex: 1 0 220px;
    min-width: 180px;
    max-width: 280px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    background: var(--coral-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

.step-desc {
    color: #15192A;
    font-size: 21px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.arrow {
    font-size: 1.5rem;
    color: #c1c6d1;
    margin: 0;
    user-select: none;
    flex-shrink: 0;
}

/* Horizontal scroll on smaller desktop/laptop */
@media (max-width: 1300px) {
    .steps {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scrollbar-width: none; /* Firefox */
    }
    .steps::-webkit-scrollbar {
        display: none;
    }
}

/* Tablet and below: stack vertically */
@media (max-width: 1024px) {
    .banner h1 {
        font-size: 56px;
        font-weight: 400;
        line-height: 58px;
        letter-spacing: -0.04em;
    }
    .steps {
        flex-direction: column;
        overflow-x: visible;
        padding-bottom: 0;
    }
    .step-box {
        min-width: 100%;
        max-width: none;
        flex: 1 0 auto;
        text-align: center;
    }
    .arrow {
        transform: rotate(90deg);
        margin: 13px;
    }
}

@media (max-width: 820px) {
    .faq-section .faq-content {
        flex-direction: column;
        gap: 40px;
    }
    .faq-section .faq-content h2::after {
        content: "";
        display: none;
    }
}

@media (max-width: 800px) {
    .arrow {
        margin: 8px;
    }
}