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

body {
    font-family: system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.35s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3A5F3A;
    transition: color 0.35s ease;
}

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

.nav-link {
    color: #555;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.35s ease;
}

.nav-link:hover {
    color: #3A5F3A;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(58, 95, 58, 0.3), rgba(58, 95, 58, 0.5)), url('../images/hero-meadow.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-disclaimer {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3A5F3A;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(58, 95, 58, 0.3);
}

.btn-hero:hover {
    background: #2d4a2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 95, 58, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.content-section {
    padding: 5rem 0;
}

.content-section h2 {
    color: #3A5F3A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: #3A5F3A;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.bg-light {
    background: #f8f9fa;
}

.rounded-image {
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.rounded-image:hover {
    transform: scale(1.02);
}

.natural-list {
    list-style: none;
    padding-left: 0;
}

.natural-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.natural-list li:before {
    content: "•";
    color: #3A5F3A;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.fact-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.35s ease;
}

.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(58, 95, 58, 0.15);
}

.fact-card h3 {
    color: #3A5F3A;
    font-size: 1.5rem;
    margin-top: 0;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3A5F3A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    color: #3A5F3A;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.context-box {
    background: #fff9f0;
    border: 2px solid #3A5F3A;
    border-radius: 6px;
    padding: 2.5rem;
}

.context-box h2 {
    color: #3A5F3A;
    margin-top: 0;
}

.context-box h3 {
    color: #3A5F3A;
    font-size: 1.5rem;
}

.context-box ul {
    list-style: none;
    padding-left: 0;
}

.context-box ul li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.context-box ul li:before {
    content: "→";
    color: #3A5F3A;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3A5F3A;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(58, 95, 58, 0.2);
}

.btn-cta:hover {
    background: #2d4a2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 95, 58, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1rem;
    transition: all 0.35s ease;
}

.form-control:focus {
    border-color: #3A5F3A;
    box-shadow: 0 0 0 0.2rem rgba(58, 95, 58, 0.15);
}

.btn-submit {
    background: #3A5F3A;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.35s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #2d4a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 95, 58, 0.3);
}

.footer {
    background: #2d4a2d;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-disclaimer {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.35s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 74, 45, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    padding-right: 2rem;
}

.btn-accept {
    background: #3A5F3A;
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-accept:hover {
    background: #4a7f4a;
}

.policy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.policy-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 6px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.policy-close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: color 0.35s ease;
}

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

.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.success-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 6px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-modal-content h3 {
    color: #3A5F3A;
    margin-top: 0;
}

.success-close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: color 0.35s ease;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .rounded-image {
        margin-bottom: 2rem;
    }

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

    .cookie-content p {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .policy-modal-content {
        padding: 2rem;
        margin: 10% auto;
    }
}

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

    .hero-content .lead {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
    }
}
