:root {
    --olive-green: #8B9A6B;
    --olive-light: #A8B88C;
    --olive-dark: #6B7A4B;
    --text-dark: #2D2D2D;
    --text-muted: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E9ECEF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    color: var(--olive-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--olive-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--olive-dark);
    text-decoration: underline;
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--olive-dark);
}

.navbar-brand:hover {
    color: var(--olive-green);
    text-decoration: none;
}

.nav-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--olive-green);
}

.navbar-toggler {
    border-color: var(--olive-green);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(107, 122, 75, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    margin-top: 70px;
}

.hero-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-section h1 {
    color: var(--olive-dark);
}

.hero-section .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
    border-bottom: none;
}

.section-alt {
    background-color: var(--bg-light);
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.content-image-left {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    max-width: 45%;
}

.content-image-right {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    max-width: 45%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.ingredient-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    height: 100%;
}

.ingredient-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ingredient-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--olive-green);
    box-shadow: 0 0 0 0.2rem rgba(139, 154, 107, 0.25);
}

.btn-primary {
    background-color: var(--olive-green);
    border-color: var(--olive-green);
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.btn-primary:hover {
    background-color: var(--olive-dark);
    border-color: var(--olive-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--olive-green);
    color: var(--olive-green);
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.btn-outline:hover {
    background-color: var(--olive-green);
    color: var(--bg-white);
    text-decoration: none;
}

.disclaimer-box {
    background-color: var(--bg-light);
    border-left: 3px solid var(--olive-green);
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.soft-cta {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.soft-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 0 1.5rem;
}

footer h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

footer p, footer a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: var(--bg-white);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-banner p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cookie-banner .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-content {
    padding: 2rem 0 4rem;
}

.page-content h2 {
    margin-top: 2rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content ul, .page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

    .section {
        padding: 2rem 0;
    }

    .content-image-left,
    .content-image-right {
        float: none;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    footer {
        text-align: center;
    }

    footer .col-md-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
