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

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

html {
    scroll-behavior: smooth;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4A704A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #3a5a3a;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #2c3e2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

nav a:hover {
    color: #4A704A;
}

#hero {
    margin-top: 70px;
    height: 85vh;
    background-image: linear-gradient(rgba(74, 112, 74, 0.3), rgba(74, 112, 74, 0.4)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

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

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

.disclaimer-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e2c;
    padding: 0.75rem 1.5rem;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.content-section h2 {
    color: #4A704A;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section h3 {
    color: #4A704A;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.content-section p {
    margin-bottom: 1rem;
    color: #3c4e3c;
    font-size: 1.05rem;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: #3c4e3c;
}

.bg-light {
    background-color: #f5f8f5;
}

.rounded-content {
    border-radius: 7px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: auto;
}

.rounded-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.nutrient-info p {
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #4A704A;
    border-radius: 4px;
}

.fact-box {
    background-color: #ffffff;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.fact-box:hover {
    transform: translateX(5px);
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #4A704A;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.context-section {
    background-color: #e8f0e8;
}

.context-box {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 7px;
    border: 2px solid #4A704A;
}

.context-box h3 {
    color: #4A704A;
    font-size: 1.3rem;
    margin-top: 0;
}

.cta-section {
    background-color: #4A704A;
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #f0f4f0;
}

.btn-custom {
    display: inline-block;
    background-color: #ffffff;
    color: #4A704A;
    padding: 0.875rem 2rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-custom:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    text-decoration: none;
}

.contact-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.contact-info h3 {
    color: #4A704A;
    margin-bottom: 1rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 7px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #4A704A;
    box-shadow: 0 0 0 0.2rem rgba(74, 112, 74, 0.15);
}

.contact-form button {
    width: 100%;
    background-color: #4A704A;
    color: #ffffff;
    border: 2px solid #4A704A;
}

.contact-form button:hover {
    background-color: #3a5a3a;
    border-color: #3a5a3a;
}

footer {
    background-color: #2c3e2c;
    color: #e8f0e8;
    padding: 3rem 0 1rem;
}

footer h4 {
    color: #4A704A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

footer p {
    color: #c8d8c8;
    font-size: 0.95rem;
}

.footer-disclaimer {
    font-weight: 600;
    color: #ffffff;
    margin-top: 1rem;
}

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

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

.footer-links a {
    color: #c8d8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A704A;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5a4a;
    text-align: center;
}

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

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

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

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

.btn-cookie {
    background-color: #4A704A;
    color: #ffffff;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #3a5a3a;
}

.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: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 7px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.policy-close {
    color: #888;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.policy-close:hover {
    color: #4A704A;
}

#policyContent h2 {
    color: #4A704A;
    margin-bottom: 1.5rem;
}

#policyContent h3 {
    color: #4A704A;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#policyContent p {
    margin-bottom: 1rem;
    color: #3c4e3c;
}

#policyContent ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.success-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);
}

.success-modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 7px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.success-close {
    color: #888;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.success-close:hover {
    color: #4A704A;
}

.success-message h3 {
    color: #4A704A;
    margin-bottom: 1rem;
}

.success-message p {
    color: #3c4e3c;
}

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

    .hero-content p {
        font-size: 1.1rem;
    }

    nav {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

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

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

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

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

    .btn-cookie {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 0.5rem;
        justify-content: center;
    }

    #hero {
        height: 70vh;
        margin-top: 120px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .disclaimer-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}
