.hero-banner {
    height: 30vh;
    display: flex;
    align-items: center;
    touch-action: pan-y;
}

.hero-banner-content {
    position: relative;
    z-index: 10000;
    max-width: 2000px;
    width: 100%;
    padding-left: 90px;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-banner-content h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--it);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--st);
    max-width: 600px;
    margin-top: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    margin-top: 15vh;
}

.about-content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.4) 25%,
            rgba(255, 255, 255, 0.15) 55%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeInGradient 1s ease-in-out forwards;
}

@keyframes fadeInGradient {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.about-content-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    color: var(--pt);
}

.about-content-wrapper h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    margin-top: 2rem;
    color: var(--pt);
}

.about-content-wrapper p,
.about-content-wrapper li {
    font-size: 1rem;
    color: var(--st);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-content-wrapper p a,
.about-content-wrapper li a {
    color: var(--pt);
    text-decoration: none;
    font-weight: 500;
}

.about-content-wrapper p a:hover,
.about-content-wrapper li a:hover {
    text-decoration: underline;
}

.about-content-wrapper ul {
    list-style-type: disc;
    padding-left: var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.about-content-wrapper strong {
    color: var(--pt);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-banner {
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-banner-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        align-items: center !important;
    }

    .hero-subtitle {
        max-width: 90% !important;
    }
}