/* Support Section */
.support {
    padding: 20px 0 80px;
    background: white;
    text-align: center;
}

.support-container {
    max-width: 908px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-title {
    font-size: calc(40px * var(--base-font-scale, 1));
    font-weight: 500;
    color: #5C068C;
    margin-bottom: 30px;
    position: relative;
}

.support-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 538px;
    height: 3px;
    background: linear-gradient(90deg, rgba(85, 40, 134, 1) 0%, rgba(85, 40, 134, 0) 100%);
}

.support-description {
    font-size: calc(23.6px * var(--base-font-scale, 1));
    line-height: 36px;
    color: #63666A;
    font-weight: 500;
    max-width: 908px;
    margin: 0 auto;
}

/* Support Section Responsive Design */
@media (max-width: 768px) {
    .support {
        border-radius: 20px 20px 0 0;
        margin-top: -40px;
        position: relative;
        z-index: 3;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .support-title {
        color: #5C068C;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: 'Mulish', sans-serif;
        font-size: calc(26px * var(--base-font-scale, 1));
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 30px;
    }

    .support-title::after {
        width: 100%;
        height: 4px;
        bottom: -15px;
    }

    .support-description {
        font-size: calc(22px * var(--base-font-scale, 1));
        line-height: 32px;
        font-weight: 400;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .support {
        border-radius: 24px 24px 0 0;
        margin-top: -30px;
    }

    .support-title {
        color: #5C068C;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: 'Mulish', sans-serif;
        font-size: calc(26px * var(--base-font-scale, 1));
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 25px;
    }

    .support-title::after {
        width: 100%;
        height: 4px;
        bottom: -17px;
    }

    .support-description {
        font-size: calc(20px * var(--base-font-scale, 1));
        line-height: 28px;
        font-weight: 400;
        margin-top: 15px;
    }
}

/* How It Works Section */
.how-it-works {
    background: #E2DCEE;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 74px;
}

.how-it-works-title {
    font-size: calc(32px * var(--base-font-scale, 1));
    font-weight: 900;
    color: #5C068C;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 350px;
    opacity: 0;
    animation: slideInUp 0.8s ease-out both;
    transition: transform 0.3s ease;
    padding: 0;
    border-radius: 16px;
    flex:1;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.step-divider {
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, rgba(85, 40, 134, 1) 0%, rgba(85, 40, 134, 0) 100%);
    opacity: 0;
    animation: expandWidth 0.6s ease-out 1s both;
    margin: 0;
}

.step:hover {
    transform: translateY(-8px);
}

.step:nth-child(1) {
    animation-delay: 0.4s;
}

.step:nth-child(2) {
    animation-delay: 0.6s;
}

.step:nth-child(3) {
    animation-delay: 0.8s;
}

.step-icon {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(85, 40, 134, 0.2));
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.pill-icon {
    width: 65px;
    height: 100px;
    padding-top: 42px;
}

.card-icon {
    padding-top: 20px;
}

.step-description {
    font-size: calc(19px * var(--base-font-scale, 1));
    line-height: 30px;
    color: #5C068C;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
    max-width: 600px;
}

.step:hover .step-description {
    color: #4A0568;
}

/* White Section */
.white-section {
    background: white;
    padding: 80px 0;
    position: relative;
    margin-top: -80px;
}

/* Sections Responsive Design */
@media (max-width: 1200px) {
    .how-it-works-container {
        padding: 0 40px;
    }

    .steps-container {
        gap: 30px;
    }

    .step {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works-title {
        font-size: calc(28px * var(--base-font-scale, 1));
        font-weight: 700;
        color: #5C068C;
        margin-bottom: 40px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        max-width: 1000px;
    }

    .step {
        max-width: 300px;
        gap: 15px;
    }

    .step-content {
        gap: 15px;
        width: 100%;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .pill-icon {
        width: 55.5px;
        height: 60px;
        padding-top: 0px;
    }

    .step-divider {
        width: 120px;
        height: 4px;
        margin: 0;
    }

    .step-description {
        font-size: calc(18px * var(--base-font-scale, 1));
        line-height: 26px;
        color: #5C068C;
        font-weight: 400;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: calc(32px * var(--base-font-scale, 1));
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .support-description {
        font-size: calc(15px * var(--base-font-scale, 1));
        padding-top: 10px;
        font-weight: 550;
    }

    .how-it-works {
        padding: 50px 0;
    }

    .how-it-works-title {
        font-size: calc(20px * var(--base-font-scale, 1));
        font-weight: 800;
        color: #5C068C;
        margin-bottom: 35px;
    }

    .steps-container {
        gap: 35px;
        max-width: 100%;
    }

    .step {
        max-width: 100%;
        gap: 12px;
    }

    .step-content {
        gap: 12px;
        width: 100%;
    }

    .step-icon {
        width: 72.75px;
        height: 53.25px;
    }

    .pill-icon {
        width: 57.5px;
        height: 53.25px;
        padding-top: 0px;
    }

    .step-divider {
        width: 120%;
        height: 4px;
        margin: 0;
    }

    .step-description {
        font-size: calc(14px * var(--base-font-scale, 1));
        line-height: 24px;
        color: #5C068C;
        font-weight: 400;
        max-width: 100%;
    }

    .step:nth-child(2) .step-description {
        padding-left: 13vw;
        padding-right: 12vw;
    }
}