* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
}

h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #1B5E20;
}

h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1B5E20;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2C6B2F;
}

p {
    margin-bottom: 15px;
}

a {
    color: #1B5E20;
    text-decoration: none;
    transition: color 0.25s linear;
}

a:hover {
    color: #2C6B2F;
    text-decoration: none;
}

.container {
    max-width: 1200px;
}

#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 500;
    color: #1B5E20;
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    color: #2C6B2F;
}

.nav-link {
    color: #333;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.25s linear;
}

.nav-link:hover {
    color: #1B5E20;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-section h1 {
    font-size: 52px;
    color: #1B5E20;
}

.lead {
    font-size: 22px;
    font-weight: 300;
    color: #555;
}

.educational-notice {
    font-size: 15px;
    color: #666;
    font-style: italic;
    padding: 15px;
    background: rgba(27, 94, 32, 0.05);
    border-left: 3px solid #1B5E20;
    margin-top: 20px;
}

.content-section {
    padding: 100px 0;
    border-bottom: 0.5px solid #e0e0e0;
}

.content-section.bg-light {
    background: #fafafa;
}

.content-section img {
    max-width: 500px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box {
    margin-top: 40px;
    padding: 30px;
    background: #f5f5f5;
    border-left: 4px solid #1B5E20;
}

.info-box h3 {
    color: #1B5E20;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 0;
    color: #555;
    font-size: 15px;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #1B5E20;
    font-size: 22px;
}

.contact-section {
    background: #fafafa;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.form-control {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.25s linear;
}

.form-control:focus {
    border-color: #1B5E20;
    box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.15);
}

.btn-primary {
    background-color: #1B5E20;
    border-color: #1B5E20;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.25s linear;
}

.btn-primary:hover {
    background-color: #2C6B2F;
    border-color: #2C6B2F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.contact-info {
    padding-top: 40px;
    border-top: 0.5px solid #e0e0e0;
}

.contact-info h3 {
    color: #1B5E20;
}

.site-footer {
    background: #1B5E20;
    color: #fff;
    padding: 60px 0 30px;
}

.site-footer h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.site-footer a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.25s linear;
}

.site-footer a:hover {
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 94, 32, 0.98);
    color: #fff;
    padding: 20px 0;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

#acceptCookies {
    background: #fff;
    color: #1B5E20;
    border: none;
    padding: 10px 30px;
    margin-left: 20px;
}

#acceptCookies:hover {
    background: #f0f0f0;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    max-width: 700px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-header {
    padding: 30px;
    border-bottom: 0.5px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1B5E20;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.25s linear;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-body h4 {
    color: #1B5E20;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin-left: 20px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-section img {
        margin-bottom: 30px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    #acceptCookies {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-section {
        min-height: 70vh;
    }

    .content-section {
        padding: 40px 0;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }
}
