.hero-section {
    position: relative;
    background-size: 100% auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    min-height: 85vh;
    height: auto;
    display: flex;
    align-items: center;
    background-color: var(--midNight-500);
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
}

.hero-content h1 {
    color: var(--midNight-0);
    line-height: 1.1;
}

.hero-content .hero-description {
    border-left: 1px solid var(--midNight-0);
    padding-left: 16px;
    width: 100%;
    max-width: 600px;
}

.hero-content .hero-description p {
    text-wrap: wrap;
    color: var(--midNight-0);
    font-size: var(--subtitle-size);
    line-height: 1.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 120px;
}

.hero-image-wrapper {
    width: 800px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1;
    margin-bottom: -150px;
}


.hero-content .hero-description p span {
    color: var(--deepSaffron-400);
    font-weight: 700;
}

.cta-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--midNight-500);
    font-size: var(--font-size-principal-btn);
    font-weight: 700;
    background-color: var(--midNight-50);
    padding: 0 24px;
    white-space: nowrap;
    width: fit-content;
    border-radius: var(--btn-border-radius);
    height: 56px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: var(--midNight-100);
}

.cta-hero:active {
    transform: scale(0.97);
}

.cta-hero .cta-hero-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--midNight-500);
    color: var(--midNight-0);
    border-radius: var(--btn-border-radius);
    font-size: 24px;
    transform-origin: center;
}



.cta-hero:hover {
    transform: translateY(-2px);
}

.cta-hero:active {
    transform: scale(0.98);
}

.cta-hero:hover .cta-hero-icon {
    animation: ring 1.2s ease-in-out infinite;
}


@media (max-width: 1150px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-top: 160px;
    }

    .hero-content {
        align-items: flex-start;
        padding-bottom: 0px;
        width: 100%;
    }

    .hero-content .hero-description {
        border-left: 1px solid var(--midNight-0);
        border-top: none;
        padding-left: 16px;
        padding-top: 0;
        max-width: none;
    }

    .hero-image-wrapper {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-image-wrapper img {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-hero {
        font-size: 15px;
        padding: 0 16px;
        height: 56px;
    }

    .hero-image-wrapper img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-hero {
        font-size: 14px;
        padding: 0 12px;
        height: 48px;
    }

    .cta-hero .cta-hero-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}