/* Header Section */
.hero-section {
    padding: 200px 24px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    overflow: hidden;
}

.hero-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.success-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.success-logo {
    height: 40px;
    width: auto; 
    margin-bottom: 16px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 80.96px;
    text-align: center;
    display: block;
}

.hero-title-blue {
    color: var(--color-primary);
}

.hero-title-orange {
    color: var(--color-secondary);
}

.hero-title-gray {
    color: var(--color-text-light);
}

.hero-description {
    width: 664px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-text-secondary);
    text-align: center;
    word-wrap: break-word;
}


@media (max-width: 1024px) {
    .hero-section {
        padding: 150px 24px 12px;
        gap: 32px;
    }

    .hero-content-container {
        gap: 24px;
    }

    .success-wrapper {
        gap: 12px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 60px;
    }

    .hero-description {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 20px 12px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 20px;
    }
}