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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* CSS Variables for Polish Theme Colors */
:root {
    --primary-red: #dc143c;
    --primary-white: #ffffff;
    --warm-gold: #d4af37;
    --cream: #faf5f0;
    --dark-red: #b71c1c;
    --light-gold: #f4e8c1;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --border-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-dark);
}

.btn-secondary {
    background: var(--warm-gold);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-tertiary:hover {
    background: var(--cream);
    border-color: var(--warm-gold);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-red);
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
    padding: 4rem 0;
}

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

.hero-text h1 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero-content {
    margin-bottom: 2rem;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--cream);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(340deg);
}

.feature-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Popular Recipes */
.popular-recipes {
    padding: 4rem 0;
    background: var(--cream);
}

.popular-recipes h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-red);
}

.recipe-card p {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.recipe-card .btn {
    margin: 0 1rem 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section address {
    color: #ccc;
    line-height: 1.6;
    font-style: normal;
}

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--warm-gold);
}

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

.social-links a {
    padding: 0.5rem;
    background: var(--primary-red);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--warm-gold);
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

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

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

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

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

.content-text h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.content-text h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.content-image {
    text-align: center;
}

.content-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--warm-gold);
}

/* Timeline */
.history {
    padding: 4rem 0;
    background: var(--cream);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--warm-gold);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-red);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    flex: 1;
    margin: 0 2rem;
}

.timeline-content h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 4rem 0;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--warm-gold);
}

.member-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background: var(--cream);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
}

.value-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-overview {
    padding: 4rem 0;
}

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

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

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

.service-card.featured {
    border: 3px solid var(--warm-gold);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(340deg);
}

.service-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Learning Modules */
.learning-modules {
    padding: 4rem 0;
    background: var(--cream);
}

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

.module-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.module-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(340deg);
}

.module-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.module-duration {
    background: var(--light-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Course Features */
.course-features {
    padding: 4rem 0;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
}

.feature-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 4rem 0;
    background: var(--cream);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--primary-red);
    color: white;
    font-weight: 600;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
}

/* Testimonials Page */
.stats {
    padding: 3rem 0;
    background: var(--cream);
}

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

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.stat-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 4px solid var(--warm-gold);
}

.testimonial-card.featured {
    border-left-color: var(--primary-red);
    transform: scale(1.02);
}

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

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--warm-gold);
}

.testimonial-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--warm-gold);
    font-size: 1.1rem;
}

.testimonial-content {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-date {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
}

/* Video Testimonials */
.video-testimonials {
    padding: 4rem 0;
    background: var(--cream);
}

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

.video-testimonial {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.video-placeholder {
    position: relative;
    height: 200px;
    background: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder img {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-testimonial h3 {
    color: var(--primary-red);
    padding: 1rem;
    margin-bottom: 0;
}

.video-testimonial p {
    padding: 0 1rem 1rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Success Stories */
.success-stories {
    padding: 4rem 0;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.story-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(340deg);
}

.story-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.story-author {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 600;
}

/* Blog Page Styles */
.blog-categories {
    padding: 4rem 0;
}

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

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

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

.category-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(340deg);
}

.category-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Featured Articles */
.featured-articles {
    padding: 4rem 0;
    background: var(--cream);
}

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

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.article-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-card.featured .article-image img {
    height: 100%;
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Cooking Tips */
.cooking-tips {
    padding: 4rem 0;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.tip-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
}

.tip-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--cream);
}

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

.newsletter-text h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Recipe Search */
.recipe-search {
    padding: 4rem 0;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-inputs {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-inputs input,
.search-inputs select {
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
}

.search-inputs input:focus,
.search-inputs select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Contact Page Styles */
.contact-form-section {
    padding: 4rem 0;
}

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

.contact-benefits {
    margin: 2rem 0;
}

.contact-benefits h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-benefits ul {
    list-style: disc;
    margin-left: 2rem;
}

.contact-benefits li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-guarantee {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-gold);
    border-radius: 10px;
}

.contact-guarantee img {
    width: 40px;
    height: 40px;
    filter: hue-rotate(340deg);
}

.contact-guarantee h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-form h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Contact Details */
.contact-details {
    padding: 4rem 0;
    background: var(--cream);
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-method img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
}

.contact-method h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-method address {
    font-style: normal;
    line-height: 1.6;
}

.contact-method a {
    color: var(--primary-red);
    font-weight: 600;
}

.contact-method small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-link {
    display: inline-block;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: white;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--dark-red);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--cream);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
    opacity: 0.5;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.map-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
}

.map-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.map-info strong {
    color: var(--text-dark);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 100px;
    height: 100px;
    filter: hue-rotate(340deg);
}

.thank-you-content h1 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

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

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.benefits-reminder {
    background: var(--light-gold);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: left;
}

.benefits-reminder h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-reminder ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-reminder li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 3rem 0;
}

.contact-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-red);
    font-weight: 600;
}

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

/* While You Wait */
.while-you-wait {
    padding: 4rem 0;
    background: var(--cream);
}

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

.wait-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.wait-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(340deg);
}

.wait-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Success Preview */
.success-preview {
    padding: 4rem 0;
}

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

.success-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.success-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: hue-rotate(340deg);
}

.success-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.success-card p {
    font-style: italic;
    color: var(--text-light);
}

/* Blog Article Styles */
.blog-article {
    padding: 4rem 0;
}

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

.breadcrumb {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-red);
}

.article-header h1 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.article-header .article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-header .article-image {
    margin-bottom: 2rem;
}

.article-header .article-image img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Recipe Info Cards */
.recipe-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--light-gold);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.info-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-dark);
}

.info-card li:last-child {
    border-bottom: none;
}

/* Recipe Steps */
.recipe-steps {
    margin: 4rem 0;
}

.recipe-steps h2 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
}

.step {
    background: white;
    margin: 3rem 0;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 4px solid var(--warm-gold);
}

.step h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.step img {
    width: 150px;
    height: 150px;
    float: right;
    margin: 0 0 1rem 2rem;
    border-radius: 10px;
    filter: hue-rotate(340deg);
}

.step p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tip {
    background: var(--cream);
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary-red);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.tip strong {
    color: var(--primary-red);
}

/* Recipe Secrets */
.recipe-secrets {
    margin: 4rem 0;
    background: var(--cream);
    padding: 3rem;
    border-radius: 10px;
}

.recipe-secrets h2 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 2rem;
}

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

.secret-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.secret-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Recipe Variations */
.recipe-variations {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-gold);
    border-radius: 10px;
}

.recipe-variations h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.recipe-variations ul {
    list-style: none;
}

.recipe-variations li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.recipe-variations li:last-child {
    border-bottom: none;
}

.recipe-variations strong {
    color: var(--text-dark);
}

/* History Section */
.history-section {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.history-section h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.history-section p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.history-section em {
    font-style: italic;
    color: var(--text-dark);
}

/* Nutritional Info */
.nutritional-info {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 10px;
}

.nutritional-info h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

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

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px var(--shadow);
}

.nutrition-label {
    font-weight: 600;
    color: var(--text-dark);
}

.nutrition-value {
    font-weight: bold;
    color: var(--primary-red);
}

/* Storage Tips */
.storage-tips {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.storage-tips h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.storage-tips ul {
    list-style: disc;
    margin-left: 2rem;
}

.storage-tips li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.storage-tips strong {
    color: var(--text-dark);
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.article-tags {
    margin-bottom: 2rem;
    text-align: center;
}

.tag {
    display: inline-block;
    background: var(--light-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-share {
    text-align: center;
    margin-bottom: 2rem;
}

.article-share h4 {
    margin-bottom: 1rem;
    color: var(--primary-red);
}

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

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.pinterest { background: #bd081c; }
.share-btn.email { background: var(--text-dark); }

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Related Articles */
.related-articles {
    padding: 4rem 0;
    background: var(--cream);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
}

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

.related-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.related-card p {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.related-card .btn {
    margin: 0 1rem 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.legal-content h1 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gold);
}

.legal-section h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.legal-section ol {
    counter-reset: item;
    list-style: none;
    margin-left: 1rem;
}

.legal-section ol > li {
    display: block;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.legal-section ol > li:before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-red);
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-section address {
    font-style: normal;
    background: var(--cream);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border-left: 3px solid var(--primary-red);
}

.legal-section a {
    color: var(--primary-red);
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Cookies Table */
.cookies-table {
    margin: 2rem 0;
}

.cookies-table h3 {
    color: var(--primary-red);
    margin: 2rem 0 1rem;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookies-table th {
    background: var(--light-gold);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table tr:hover {
    background: var(--cream);
}

/* Cookie Controls */
.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

/* Additional Problem Solving Styles */
.troubleshooting {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.troubleshooting h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

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

.problem-item {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.problem-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.problem-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Decoration Ideas */
.decoration-ideas {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-gold);
    border-radius: 10px;
}

.decoration-ideas h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

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

.decoration-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
}

.decoration-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Serving Suggestions */
.serving-suggestions {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.serving-suggestions h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

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

.suggestion-item {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.suggestion-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Preparation Tips */
.preparation-tips {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 10px;
}

.preparation-tips h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

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

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.tip-item h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.tip-item ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.tip-item li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    /* Header mobile */
    .header .container {
        padding: 1rem 20px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px var(--shadow);
        z-index: 1000;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav a {
        display: block;
        padding: 1rem;
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero adjustments */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Grid adjustments */
    .features-grid,
    .recipes-grid,
    .services-grid,
    .modules-grid,
    .testimonials-grid,
    .articles-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card.featured {
        grid-template-columns: 1fr;
    }
    
    /* Content adjustments */
    .content-grid,
    .contact-content,
    .newsletter-content,
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Timeline adjustments */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row;
        margin-left: 40px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year {
        width: 80px;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
    }
    
    /* Form adjustments */
    .search-inputs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .hero-buttons,
    .cookie-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Cookie banner adjustments */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Article adjustments */
    .article-header .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step img {
        float: none;
        margin: 1rem auto;
        display: block;
        width: 120px;
        height: 120px;
    }
    
    .recipe-info {
        grid-template-columns: 1fr;
    }
    
    .secrets-grid,
    .problems-grid,
    .decoration-grid,
    .suggestions-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .article-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Stats adjustments */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact methods */
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    /* FAQ grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Wait content */
    .wait-content,
    .success-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Steps grid */
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography for very small screens */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Padding adjustments */
    .hero,
    .features,
    .popular-recipes,
    .cta,
    .about-content,
    .services-overview,
    .testimonials-section,
    .blog-categories,
    .featured-articles,
    .contact-form-section,
    .legal-page {
        padding: 2rem 0;
    }
    
    /* Card padding */
    .feature-card,
    .recipe-card,
    .service-card,
    .module-card,
    .testimonial-card,
    .article-card,
    .team-member,
    .value-card {
        padding: 1.5rem;
    }
    
    /* Form adjustments */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Stats grid for mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Article header image */
    .article-header .article-image img {
        width: 250px;
        height: 250px;
    }
    
    /* Share buttons */
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta,
    .article-share,
    .related-articles {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .article-content {
        break-inside: avoid;
    }
    
    .step {
        break-inside: avoid;
        margin: 1rem 0;
    }
}
