.article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .article-intro {
        margin-left: 0;
        padding-left: 1rem;
    }
    
    .section-heading::before {
        display: none;
    }
    
    .blog-article {
        font-size: 1rem;
    }:root {
    --primary-color: #2c5f41;
    --secondary-color: #8b4513;
    --accent-color: #ff6b35;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Header Styles */
.n4a2-box-element-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar-scrolled {
    background: var(--white) !important;
    box-shadow: var(--shadow);
}

.n4a2-box-element-logo .brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    line-height: 1;
}

.n4a2-box-element-logo .brand-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
    display: block;
    margin-top: -2px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.n4a2-box-element-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 120px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-image-wrapper img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.n4a2-box-element-about {
    padding: 100px 0;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

/* Recipe Cards */
.recipe-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.recipe-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Benefits Section */
.n4a2-box-element-benefits {
    padding: 100px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Collaboration Section */
.n4a2-box-element-collaboration {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a33 100%);
}

.collab-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Blog Preview */
.blog-preview-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
}

.blog-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* CTA Section */
.n4a2-box-element-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e55a2b 100%);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    color: var(--primary-color);
}

/* Contact Section */
.n4a2-box-element-contact {
    padding: 100px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 65, 0.25);
}

/* Footer */
.n4a2-box-element-footer {
    padding: 80px 0 0;
    background: var(--dark-color);
}

.footer-brand h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-info-footer p {
    color: var(--gray-300);
    margin-bottom: 0.75rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1040;
}

.cookie-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-actions .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Blog Specific Styles */
.n4a2-box-element-blog-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 140px 0 80px;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.blog-tag {
    padding: 0.5rem 1.5rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-tag.active,
.blog-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.featured-article {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
}

.featured-content {
    padding: 2rem 0;
}

.article-category {
    display: inline-block;
    background: var(--info-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.author-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}

.search-form {
    max-width: 300px;
}

.search-form .form-control {
    padding-right: 3rem;
    border-radius: 25px;
    border: 2px solid var(--gray-200);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* Article Styles */
.n4a2-box-element-article-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 140px 0 60px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.blog-article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-intro {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin-left: 1rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 2rem;
    position: relative;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.5rem;
    background: var(--accent-color);
}

.article-conclusion {
    border: 2px solid var(--primary-color);
    margin-top: 3rem;
}

.article-conclusion h4 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Related Content */
.n4a2-box-element-related {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Newsletter Section */
.n4a2-box-element-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a33 100%);
}

.newsletter-input {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 300px;
}

.newsletter-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    color: var(--primary-color);
    white-space: nowrap;
}

.newsletter-benefits i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Thank You Page Styles */
.n4a2-box-element-thankyou {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.success-animation {
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-circle {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.success-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.next-step {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.success-actions .btn {
    transition: transform 0.3s ease;
}

.success-actions .btn:hover {
    transform: translateY(-2px);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.bonus-article {
    transition: transform 0.3s ease;
}

.bonus-article:hover {
    transform: translateY(-5px);
}

/* Utilities and Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 25px;
}

.bg-primary-soft {
    background-color: rgba(44, 95, 65, 0.1);
    color: var(--primary-color);
}

.bg-secondary-soft {
    background-color: rgba(139, 69, 19, 0.1);
    color: var(--secondary-color);
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.bg-info-soft {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e55a2b 100%);
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #1e4a33;
    border-color: #1e4a33;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--dark-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .article-intro {
        margin-left: 0;
        padding-left: 1rem;
    }
    
    .section-heading::before {
        display: none;
    }
    
    .blog-article {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-categories {
        justify-content: flex-start;
    }
    
    .blog-tag {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }
    
    .author-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .success-actions {
        text-align: center;
    }
    
    .success-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cookie-consent .row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .n4a2-box-element-hero {
        padding-top: 100px;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .contact-form .row {
        margin: 0;
    }
    
    .contact-form .col-md-6,
    .contact-form .col-12 {
        padding: 0;
        margin-bottom: 1rem;
    }
}