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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', 'Kalam', 'Patrick Hand', cursive, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Hand-drawn Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2rem;
    color: #27ae60;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #27ae60;
}

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

/* Hand-drawn Button Styles */
.btn-primary, .btn-secondary, .btn-tertiary, .btn-hero, .btn-subscription {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    overflow: hidden;
}

.btn-primary {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
    box-shadow: 
        3px 3px 0px #1e8e4f,
        6px 6px 10px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px #1e8e4f,
        8px 8px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 
        3px 3px 0px #2980b9,
        6px 6px 10px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px #2980b9,
        8px 8px 15px rgba(0,0,0,0.3);
}

.btn-tertiary {
    background: transparent;
    color: #27ae60;
    border-color: #27ae60;
}

.btn-tertiary:hover {
    background: #27ae60;
    color: white;
    transform: translate(-2px, -2px);
}

.btn-hero {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 
        4px 4px 0px #c0392b,
        8px 8px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        7px 7px 0px #c0392b,
        12px 12px 20px rgba(0,0,0,0.3);
}

.btn-subscription {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
    width: 100%;
    margin-top: 20px;
    box-shadow: 
        3px 3px 0px #e67e22,
        6px 6px 10px rgba(0,0,0,0.2);
}

.btn-subscription:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px #e67e22,
        8px 8px 15px rgba(0,0,0,0.3);
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #27ae60;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #27ae60;
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #27ae60;
    border-radius: 2px;
    animation: underline-grow 0.3s ease;
}

@keyframes underline-grow {
    from { width: 0; margin: 0 auto; }
    to { width: 100%; margin: 0; }
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2327ae60' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image {
    text-align: center;
    animation: slideInRight 1s ease;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.2));
}

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

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #27ae60;
    border-radius: 2px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

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

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

.about-text h3 {
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        10px 10px 0px #27ae60,
        15px 15px 30px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    position: relative;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 
        5px 5px 0px #e17055,
        10px 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid #e17055;
}

.service-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0px #e17055,
        15px 15px 30px rgba(0,0,0,0.25);
}

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

.service-img {
    width: 80px;
    height: 80px;
}

.service-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

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

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

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        5px 5px 0px #3498db,
        10px 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid #3498db;
}

.recipe-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0px #3498db,
        15px 15px 30px rgba(0,0,0,0.25);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

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

.recipe-content {
    padding: 1.5rem;
}

.recipe-title {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.recipe-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.recipe-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        5px 5px 0px #e84393,
        10px 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid #e84393;
}

.testimonial-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0px #e84393,
        15px 15px 30px rgba(0,0,0,0.25);
}

.testimonial-image {
    margin-bottom: 1rem;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #e84393;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-name {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-location {
    color: #888;
    font-size: 0.9rem;
}

/* Subscription Section */
.subscription {
    padding: 80px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

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

.subscription-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subscription-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscription-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        5px 5px 0px #5f3dc4,
        10px 10px 20px rgba(0,0,0,0.2);
}

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

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid #ddd;
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #6c5ce7;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.form-input::placeholder {
    color: #999;
}

/* Footer */
.footer {
    background: #2c3e50;
    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 h4 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-description {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #27ae60;
}

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

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #27ae60;
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 2px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    z-index: 20000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.cookie-category p {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Page-specific Styles */

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.about-hero-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
    background: white;
}

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

.mvv-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

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

.mvv-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        5px 5px 0px #e84393,
        10px 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #e84393;
}

.mvv-card ul {
    margin-left: 1rem;
    color: #666;
}

.services-detail {
    padding: 80px 0;
    background: white;
}

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

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        5px 5px 0px #3498db,
        10px 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #3498db;
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        5px 5px 0px #27ae60,
        10px 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #27ae60;
}

.member-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #27ae60;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

/* Blog Page */
.blog-hero {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.blog-articles {
    padding: 80px 0;
    background: white;
}

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

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        5px 5px 0px #e17055,
        10px 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #e17055;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0px #e17055,
        15px 15px 30px rgba(0,0,0,0.25);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

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

.article-content {
    padding: 1.5rem;
}

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

.article-category {
    background: #27ae60;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.article-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.article-link {
    color: #e17055;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #d63031;
}

.newsletter-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    text-align: center;
}

/* Article Detail Pages */
.article-header {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    padding: 120px 0 60px;
    color: white;
}

.article-breadcrumb {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.article-breadcrumb a {
    color: white;
    text-decoration: none;
}

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

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

.article-reading-time {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.featured-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

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

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

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

.recipe-box {
    background: #f8f9fa;
    border: 3px solid #27ae60;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.recipe-box h4 {
    color: #27ae60;
    margin-bottom: 1rem;
}

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

.sidebar-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid #ddd;
}

.sidebar-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.related-articles {
    list-style: none;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.related-articles a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.social-share {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    display: block;
    padding: 8px 12px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.3s ease;
}

.share-btn:hover {
    background: #2980b9;
}

.newsletter-signup {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.newsletter-signup h4 {
    color: white;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.legal-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-wrapper h2 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 0.5rem;
}

.legal-wrapper h3 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-wrapper ul, .legal-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.contact-box {
    background: #f8f9fa;
    border: 3px solid #3498db;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.contact-box h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    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: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

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

.cookie-preferences-link {
    text-align: center;
    margin: 2rem 0;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.submission-details {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.whats-next {
    padding: 80px 0;
    background: white;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 
        5px 5px 0px #00b894,
        10px 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #00b894;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exclusive-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #666;
    font-size: 0.9rem;
}

.featured-for-subscribers {
    padding: 80px 0;
    background: white;
}

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

.social-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    text-align: center;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: white;
    color: #6c5ce7;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.social-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 20px rgba(0,0,0,0.3);
}

.return-to-site {
    padding: 60px 0;
    background: white;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding-top: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-container,
    .about-content,
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid,
    .recipes-grid,
    .testimonials-grid,
    .mvv-grid,
    .team-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-primary, .btn-secondary, .btn-tertiary {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .service-card,
    .recipe-card,
    .testimonial-card,
    .mvv-card {
        padding: 1.5rem;
    }
    
    .legal-title,
    .about-hero-title,
    .thanks-title {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hand-drawn underlines and decorations */
.hand-underline {
    position: relative;
}

.hand-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='%2327ae60' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 10px;
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero,
    .subscription,
    .social-cta {
        background: white !important;
        color: black !important;
    }
}
