.hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    margin-top: -90px;
    background: linear-gradient(135deg, #5d8d57 0%, #3c6e37 100%);
    color: white;
    text-align: center;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    padding: 20px 10px;
    padding-top: 100px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    line-height: 0.5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
}

.hero-section p {
    font-size: 1.90rem;
    margin: 0 auto 25px;
    max-width: 900px;
    line-height: 1.8;
    opacity: 0.9;
    text-align: center;
}

.hero-section .btn-register {
    margin: 20px auto 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 40px;
        margin-top: -70px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 30px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 20px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 15px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding-top: 30px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        padding: 0 10px;
        line-height: normal;
    }

    .hero-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
}
