* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #2c5530;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #7fb069;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #7fb069 0%, #2c5530 100%);
    color: #fff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e8f5e8;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background-color: #ff6b35;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #e55a2e;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #fff;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.content-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.content-item:hover {
    transform: translateY(-5px);
}

.icon {
    color: #7fb069;
    margin-bottom: 20px;
}

.content-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c5530;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ingredient-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ingredient-card h3 {
    padding: 20px 20px 10px;
    color: #2c5530;
}

.ingredient-card p {
    padding: 0 20px 20px;
    color: #666;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recipe-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h3 {
    padding: 20px 20px 10px;
    color: #2c5530;
}

.recipe-card p {
    padding: 0 20px 15px;
    color: #666;
}

.recipe-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: #7fb069;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.recipe-link:hover {
    color: #2c5530;
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    color: #7fb069;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c5530;
}

.seasonal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.season-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.article-preview {
    background-color: #fff;
}

.article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.article-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.article-text p {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    color: #7fb069;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2c5530;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-author {
    color: #2c5530;
    font-weight: bold;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e8f5e8;
}

.faq-question h3 {
    color: #2c5530;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #7fb069;
    font-weight: bold;
}

.faq-answer {
    padding: 20px;
    display: none;
    background-color: #fff;
}

.faq-answer.active {
    display: block;
}

.contact {
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    color: #7fb069;
    margin-right: 15px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c5530;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fb069;
}

.submit-btn {
    background-color: #7fb069;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2c5530;
}

footer {
    background-color: #2c5530;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-contact h3,
.footer-menu h3 {
    margin-bottom: 15px;
    color: #7fb069;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #7fb069;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #7fb069;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5530;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h4 {
    margin-bottom: 10px;
    color: #7fb069;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #7fb069;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #5a8a4a;
}

.cookie-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-decline:hover {
    background-color: #fff;
    color: #2c5530;
}

.cookie-learn {
    color: #7fb069;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-learn:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c5530;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .seasonal-content {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-item,
    .season-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

.article-main {
    padding: 150px 0 100px;
    background-color: #fff;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #999;
    font-size: 0.9rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
}

.article-content h2 {
    font-size: 2rem;
    color: #2c5530;
    margin: 50px 0 20px 0;
    text-align: left;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin: 30px 0 15px 0;
}

.article-content p {
    margin-bottom: 20px;
    color: #444;
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: #444;
}

.article-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid #7fb069;
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.article-highlight h3 {
    margin-top: 0;
    color: #2c5530;
}

.ingredients-detailed {
    margin: 40px 0;
}

.ingredient-detailed {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 4px solid #7fb069;
}

.ingredient-detailed h3 {
    color: #2c5530;
    margin-top: 0;
}

.recipe-detailed {
    background-color: #fff;
    border: 2px solid #7fb069;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
}

.recipe-detailed h3 {
    color: #2c5530;
    margin-top: 0;
    margin-bottom: 20px;
}

.recipe-detailed ul {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 15px 0;
}

.article-callout {
    background-color: #e8f5e8;
    border: 2px solid #7fb069;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.article-callout h3 {
    color: #2c5530;
    margin-top: 0;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .article-highlight,
    .ingredient-detailed,
    .recipe-detailed,
    .article-callout {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-featured-image {
        height: 200px;
    }
}

.legal-page {
    padding: 150px 0 100px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    text-align: center;
}

.legal-intro {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 20px;
    border-bottom: 2px solid #7fb069;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin: 25px 0 15px 0;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #444;
}

.contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid #7fb069;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.contact-box p {
    margin-bottom: 5px;
}

.cookie-type {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.cookie-type h3 {
    color: #2c5530;
    margin-top: 0;
}

.cookie-duration {
    background-color: #e8f5e8;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.cookie-duration h3 {
    color: #2c5530;
    margin-top: 0;
}

.cookie-management {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.cookie-management h3 {
    color: #2c5530;
    margin-top: 0;
}

.browser-instructions {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.browser-instructions h3 {
    color: #2c5530;
    margin-top: 0;
    margin-bottom: 10px;
}

.browser-instructions p {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
}

.thankyou-page {
    padding: 150px 0 100px;
    background-color: #f8f9fa;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-icon {
    color: #7fb069;
    margin-bottom: 30px;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thankyou-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.thankyou-info h2 {
    color: #2c5530;
    margin-bottom: 30px;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-number {
    background-color: #7fb069;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    margin: 0;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #7fb069;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2c5530;
}

.btn-secondary {
    background-color: transparent;
    color: #7fb069;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #7fb069;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #7fb069;
    color: #fff;
}

.contact-reminder {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-reminder h3 {
    color: #2c5530;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 20px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-info {
        padding: 20px;
    }
    
    .contact-reminder {
        padding: 20px;
    }
} 