/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #8B0000;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #09d329;
}

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

.btn-primary {
    background-color: #8B0000;
    color: white;
}

.btn-primary:hover {
    background-color: #660000;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #8B0000;
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

.cookie-content h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-accept-all {
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-necessary {
    background-color: #666;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #8B0000;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

.modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8B0000;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #8B0000;
    opacity: 0.7;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.btn-save {
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
}

/* Main content offset for fixed header */
main {
    margin-top: 70px;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #8B0000;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B0000;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    padding: 50px 0 80px;
    overflow: hidden;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.hero-image {
    text-align: center;
    margin-top: 3rem;
}

.pattern {
    width: 200px;
    height: 200px;
    opacity: 0.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8B0000;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.chef-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #FFF9F9;
}

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

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

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

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

.service-icon img {
    width: 60px;
    height: 60px;
}

/* Recipes Section */
.recipes-section {
    padding: 80px 0;
    background-color: white;
}

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

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

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

.recipe-image {
    height: 200px;
    background-color: #FFF5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-image img {
    width: 80px;
    height: 80px;
}

.recipe-content {
    padding: 1.5rem;
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    color: white;
    text-align: center;
}

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

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.checkbox-container a {
    color: #FFD700;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #FFF9F9;
}

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

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.review-author strong {
    color: #8B0000;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
    display: block;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8B0000;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B0000;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 40px 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: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Blog Article Styles */
.blog-post {
    padding: 50px 0 80px;
}

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

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

.breadcrumb a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.category {
    background: #8B0000;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
}

.date {
    color: #8B0000;
    font-weight: 500;
}

.read-time {
    color: #666;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #8B0000;
}

.article-lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.recipe-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: #FFF5F5;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #8B0000;
    margin: 2rem 0;
}

.quick-info-item {
    text-align: center;
}

.quick-info-item strong {
    color: #8B0000;
    font-weight: 600;
}

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

.article-hero-image {
    text-align: center;
    margin: 3rem 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    padding: 3rem;
    border-radius: 15px;
}

.hero-recipe-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.image-caption {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    border-bottom: 2px solid #8B0000;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #8B0000;
}

.content-section h3 {
    color: #8B0000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

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

.tip-box h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.ingredients-section {
    margin: 3rem 0;
}

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

.ingredient-category {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
}

.ingredient-category h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 0.5rem;
}

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

.ingredients-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: #444;
}

.ingredients-list li:before {
    content: "•";
    color: #8B0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.recipe-steps {
    margin: 3rem 0;
}

.step-group {
    margin-bottom: 2rem;
}

.step-group h3 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 0.5rem;
}

.recipe-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 10px;
    border-left: 4px solid #8B0000;
}

.step-number {
    background: #8B0000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.legal-page {
    padding: 50px 0 80px;
}

.legal-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

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

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    color: #8B0000;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.legal-section h3 {
    color: #8B0000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #FFF5F5;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8B0000;
    margin: 1rem 0;
}

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

.purpose-item {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
}

.purpose-item h4 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.legal-basis {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Additional Blog Article Styles */
.tips-section {
    margin: 3rem 0;
}

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

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

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

.related-recipes {
    margin: 3rem 0;
    background: #FFF9F9;
    padding: 2rem;
    border-radius: 10px;
}

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

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

.related-card:hover {
    transform: translateY(-3px);
}

.related-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.related-card a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
}

.related-card a:hover {
    text-decoration: underline;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.nav-back, .nav-next {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 1px solid #8B0000;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-back:hover, .nav-next:hover {
    background: #8B0000;
    color: white;
}

/* Special sections for specific blog posts */
.serving-section {
    background: #FFF9F9;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.serving-info h3 {
    color: #8B0000;
    margin: 1.5rem 0 1rem 0;
}

.serving-info ul {
    list-style: none;
    padding-left: 0;
}

.serving-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.serving-info li:before {
    content: "•";
    color: #8B0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.serving-info strong {
    color: #8B0000;
}

.variations-section {
    margin: 3rem 0;
    background: #FFF9F9;
    padding: 2rem;
    border-radius: 10px;
}

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

.variation-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.variation-card h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tradition-section {
    margin: 3rem 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #8B0000;
}

.tradition-content h3 {
    color: #8B0000;
    margin: 2rem 0 1rem 0;
}

.tradition-content h3:first-child {
    margin-top: 0;
}

.tradition-list {
    list-style: none;
    padding-left: 0;
}

.tradition-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.tradition-list li:before {
    content: "🎄";
    position: absolute;
    left: 0;
}

.tradition-list strong {
    color: #8B0000;
}

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

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

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

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

    .recipe-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }

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

    .serving-info {
        padding: 1rem;
    }

    .tradition-section {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 30px 0 60px;
    }
    
    .service-card,
    .recipe-card {
        margin: 0 10px;
    }

    .blog-post,
    .legal-page {
        padding: 30px 0 60px;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

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