/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: #2E7D32;
}

h2 {
    font-size: 2rem;
    color: #388E3C;
}

h3 {
    font-size: 1.5rem;
    color: #4CAF50;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2E7D32;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
}

.nav-logo svg {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2E7D32;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.feature span {
    font-weight: 500;
    color: #2E7D32;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Blog Section */
.blog-preview {
    padding: 100px 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-date,
.blog-category {
    background-color: #E8F5E8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: #2E7D32;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #4CAF50;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3E5F5 0%, #E8F5E8 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #555;
}

.review-author strong {
    color: #2E7D32;
    display: block;
    margin-bottom: 0.5rem;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 400px;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #2E7D32;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2E7D32;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-accept-all {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept-all:hover {
    background-color: #45a049;
}

.btn-necessary,
.btn-settings {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-necessary:hover,
.btn-settings:hover {
    background-color: white;
    color: #2E7D32;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2E7D32;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-save {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.btn-cancel {
    background-color: transparent;
    color: #666;
    border: 2px solid #ccc;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

/* Blog Page Styles */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    text-align: center;
}

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

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-main {
    min-width: 0;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card.featured {
    border: 3px solid #4CAF50;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    color: #2E7D32;
    border-bottom: 2px solid #E8F5E8;
    padding-bottom: 0.5rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #666;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #4CAF50;
}

.category-list span {
    color: #999;
    font-size: 0.9rem;
}

.newsletter-widget {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
}

.newsletter-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-post svg {
    flex-shrink: 0;
    border-radius: 5px;
}

.popular-post-content h4 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.popular-post-content span {
    font-size: 0.8rem;
    color: #999;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #E8F5E8;
    color: #2E7D32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #4CAF50;
    color: white;
}

/* Article Page Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 100%);
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #4CAF50;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-read-time {
    background-color: #E8F5E8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-intro {
    font-size: 1.25rem;
    color: #666;
    margin: 2rem 0;
    line-height: 1.6;
}

.article-author {
    margin-top: 2rem;
}

.author-info strong {
    color: #2E7D32;
    display: block;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

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

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-main {
    min-width: 0;
}

.article-image {
    margin-bottom: 3rem;
    text-align: center;
}

.article-image svg {
    max-width: 100%;
    border-radius: 10px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2E7D32;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2E7D32;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #388E3C;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.info-box {
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.info-box h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

/* Recipe Cards */
.recipe-card {
    background: white;
    border: 2px solid #E8F5E8;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recipe-card h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ingredients h4,
.instructions h4 {
    color: #388E3C;
    margin-bottom: 1rem;
    border-bottom: 2px solid #E8F5E8;
    padding-bottom: 0.5rem;
}

.ingredients ul {
    list-style-type: none;
    padding-left: 0;
}

.ingredients li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ingredients li:before {
    content: "🥬";
    margin-right: 0.5rem;
}

.instructions ol {
    padding-left: 1.5rem;
}

.instructions li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 1px solid #E8F5E8;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tip-card h4 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #E8F5E8;
}

.related-articles h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.related-card h4 {
    margin-bottom: 0.5rem;
}

.related-card h4 a {
    color: #2E7D32;
}

.related-card span {
    color: #666;
    font-size: 0.9rem;
}

.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.article-tags h4 {
    margin-bottom: 1rem;
    color: #2E7D32;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-message svg,
.error-message svg,
.info-message svg {
    margin-bottom: 2rem;
}

.success-message h1 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.error-message h1 {
    color: #F44336;
    margin-bottom: 1rem;
}

.info-message h1 {
    color: #2196F3;
    margin-bottom: 1rem;
}

.large {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.related-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.related-content h3 {
    margin-bottom: 1.5rem;
    color: #2E7D32;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 5px;
    color: #2E7D32;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.related-link:hover {
    background: #E8F5E8;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E8F5E8;
}

.legal-content h2 {
    color: #2E7D32;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: #388E3C;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content h4 {
    color: #4CAF50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-box {
    background: #E8F5E8;
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

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

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

/* Cookie Policy Specific Styles */
.cookie-category-box {
    background: #F8F9FA;
    border: 1px solid #E8F5E8;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

.browser-settings {
    background: #E8F5E8;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.browser-settings h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.browser-settings p {
    margin-bottom: 1rem;
    font-family: monospace;
    background: white;
    padding: 0.5rem;
    border-radius: 3px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E8F5E8;
}

.cookie-table th {
    background: #4CAF50;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.faq-section {
    margin: 2rem 0;
}

.faq-section h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.faq-section p {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

/* Article Specific Components */
.protein-source-grid,
.vegetable-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.protein-card,
.vegetable-card {
    background: white;
    border: 2px solid #E8F5E8;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.protein-card h3,
.vegetable-card h3 {
    color: #2E7D32;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #E8F5E8;
    padding-bottom: 1rem;
}

.protein-content,
.vegetable-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.protein-info,
.vegetable-item {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.protein-info h4,
.vegetable-item h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.protein-info p strong {
    color: #4CAF50;
}

.binding-agents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.agent-card {
    background: #F1F8E9;
    border: 1px solid #C8E6C9;
    border-radius: 10px;
    padding: 1.5rem;
}

.agent-card h4 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.flour-alternatives {
    margin: 2rem 0;
}

.flour-category {
    margin-bottom: 3rem;
}

.flour-category h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.flour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.flour-card {
    background: white;
    border: 1px solid #E8F5E8;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.flour-card h4 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.flour-card p {
    margin-bottom: 0.5rem;
}

.flour-card p strong {
    color: #4CAF50;
}

.problems-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-card {
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    border-radius: 10px;
    padding: 1.5rem;
}

.problem-card h4 {
    color: #E65100;
    margin-bottom: 1rem;
}

.problem-card p strong {
    color: #FF6F00;
}

.myth-buster {
    margin: 2rem 0;
}

.myth {
    background: #E3F2FD;
    border: 1px solid #BBDEFB;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.myth h4 {
    color: #0D47A1;
    margin-bottom: 1rem;
}

.myth p strong {
    color: #1976D2;
}

.season-calendar {
    margin: 2rem 0;
    overflow-x: auto;
}

.season-calendar table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.season-calendar th,
.season-calendar td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #E8F5E8;
}

.season-calendar th {
    background: #4CAF50;
    color: white;
    font-weight: 600;
}

.season-calendar tr:nth-child(even) {
    background: #F8F9FA;
}

.season-calendar tr:last-child td {
    border-bottom: none;
}

.storage-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Sidebar Specific Components */
.sidebar-widget .nutrition-info {
    background: #E8F5E8;
    padding: 1rem;
    border-radius: 5px;
}

.sidebar-widget .nutrition-info ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget .nutrition-info li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid #C8E6C9;
}

.sidebar-widget .nutrition-info li:last-child {
    border-bottom: none;
}

.sidebar-widget .protein-calculator input,
.sidebar-widget .protein-calculator select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sidebar-widget .protein-calculator button {
    width: 100%;
}

#protein-result {
    margin-top: 1rem;
    padding: 1rem;
    background: #E8F5E8;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #2E7D32;
}

.sidebar-widget .quick-guide ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget .quick-guide li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E8F5E8;
    position: relative;
    padding-left: 1.5rem;
}

.sidebar-widget .quick-guide li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.sidebar-widget .quick-guide li:last-child {
    border-bottom: none;
}

.sidebar-widget .flour-mix ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget .flour-mix li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E8F5E8;
}

.sidebar-widget .flour-mix li:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #2E7D32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-widget {
        position: static;
    }

    .recipe-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        align-items: center;
    }

    .cookie-modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .season-calendar {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .sidebar-widget,
    .btn {
        display: none !important;
    }

    .article-main,
    .legal-content {
        max-width: 100%;
        margin: 0;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }

    .recipe-card,
    .info-box {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #fff;
        --accent-color: #0066cc;
    }

    .btn-primary {
        background-color: #000;
        color: #fff;
        border: 2px solid #000;
    }

    .btn-secondary {
        background-color: #fff;
        color: #000;
        border: 2px solid #000;
    }

    .header {
        border-bottom: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

/* Skip Links for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #4CAF50;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 3px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}
