.hero {
    margin-top: 40px;
}

.hero-content {
    background-image: url('../images/hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 650px;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 32px;
}

.hero-items {
    background-image: url('../shape/hero-shape.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    width: 70%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-title h1 {
    font-size: 70px;
    font-weight: 900;
    color: #148864;
    text-align: center;
    margin-top: 20px;
}

.hero-subtitle h2 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
}


@media (max-width: 1400px) {
    .hero-items {
        width: 76%;
    }
}

@media (max-width: 1200px) {
    .hero-items {
        width: 100%;
    }

    .hero-title h1 {
        font-size: 60px;
    }

    .hero-subtitle h2 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .hero-items {
        background-image: none;
        width: 95% !important;
        background-color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        border-radius: 32px;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
        padding: 15px;
    }

    .hero-title h1 {
        font-size: 50px;
        margin-top: 0;
    }

    .hero-subtitle h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 46px;
    }

    .hero-subtitle h2 {
        font-size: 24px;
        line-height: 42px;
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 16px;
    }

    .hero-content {
        height: 600px;
    }

    .hero-items {
        gap: 0;
    }

    .hero-title h1 {
        font-size: 40px;
    }

    .hero-subtitle h2 {
        font-size: 25px;
        line-height: 42px;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .hero-content {
        height: 440px;
    }

    .hero-items {
        margin-bottom: 10px;
        border-radius: 24px;

    }

    .hero-title h1 {
        font-size: 32px;
    }

    .hero-subtitle h2 {
        font-size: 18px;
        line-height: 36px;
        font-weight: 700;
    }
}

@media (max-width: 400px) {
    .hero-content {
        height: 410px;
    }

    .hero-items {
        margin-bottom: 10px;
        border-radius: 24px;

    }

    .hero-title h1 {
        font-size: 30px;
    }

    .hero-subtitle h2 {
        font-size: 16px;
    }
}