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

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Typography with Hand-drawn Feel */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 0.5em;
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

h1:hover, h2:hover, h3:hover {
    transform: rotate(0.5deg);
}

h1 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #fff, 4px 4px 0px rgba(231, 76, 60, 0.3);
}

h2 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
    transform: rotate(-1deg);
}

h3 {
    font-size: 1.5rem;
    color: #27ad5f;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    transform: rotate(0.1deg);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 2rem;
    transform: rotate(-0.2deg);
}

/* Buttons with Hand-drawn Style */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    transform: rotate(-1deg);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: rotate(1deg) scale(1.05);
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border-color: #c0392b;
    box-shadow: 3px 3px 0px #c0392b, 6px 6px 0px rgba(192, 57, 43, 0.3);
}

.btn-primary:hover {
    background: #c0392b;
    box-shadow: 1px 1px 0px #a93226, 3px 3px 0px rgba(169, 50, 38, 0.3);
}

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

.btn-outline {
    background: transparent;
    color: #27ae60;
    border-color: #27ae60;
    box-shadow: 3px 3px 0px #27ae60, 6px 6px 0px rgba(39, 174, 96, 0.3);
}

.btn-outline:hover {
    background: #27ae60;
    color: white;
    box-shadow: 1px 1px 0px #229954, 3px 3px 0px rgba(34, 153, 84, 0.3);
}

.cta-button {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    border: 3px solid #c0392b;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0px #c0392b, 8px 8px 0px rgba(192, 57, 43, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: rotate(2deg) scale(1.1);
    box-shadow: 2px 2px 0px #c0392b, 4px 4px 0px rgba(192, 57, 43, 0.3);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-bottom: 4px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transform: rotate(-0.1deg);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(1deg);
}

.logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-10deg) scale(1.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 1px 1px 0px #fff;
}

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

.nav-menu li {
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.nav-menu li:hover {
    transform: rotate(0.5deg) scale(1.05);
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

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

.nav-social a {
    color: #7f8c8d;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.nav-social a:hover {
    color: #e74c3c;
    transform: rotate(2deg) scale(1.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 4rem 0;
    border-bottom: 4px solid #3498db;
    transform: rotate(-0.2deg);
    margin-bottom: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    transform: rotate(0.5deg);
}

.hero-text h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.hero-text p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    transform: rotate(0.3deg);
}

.hero-image {
    text-align: center;
    transform: rotate(-1deg);
}

.hero-banner {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-banner:hover {
    transform: rotate(1deg) scale(1.05);
}

/* Section Styles */
.about-section,
.services,
.recipes,
.blog-section,
.testimonials,
.newsletter,
.contact {
    padding: 4rem 0;
    position: relative;
}

.about-section {
    background: #f8f9fa;
    transform: rotate(0.1deg);
    border-top: 4px solid #27ae60;
    border-bottom: 4px solid #27ae60;
}

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

.about-text {
    transform: rotate(-0.3deg);
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
}

.about-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #27ae60;
    transform: rotate(0.2deg);
}

.about-image {
    text-align: center;
    transform: rotate(1deg);
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 5px 5px 0px #27ae60, 10px 10px 0px rgba(39, 174, 96, 0.3);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: rotate(-2deg) scale(1.02);
}

/* Services Grid */
.services {
    background: linear-gradient(135deg, #fff 0%, #f1c40f 100%);
    transform: rotate(-0.2deg);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #f39c12;
    box-shadow: 5px 5px 0px #f39c12, 10px 10px 0px rgba(243, 156, 18, 0.3);
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: rotate(-1deg) translateY(-10px);
    box-shadow: 3px 3px 0px #f39c12, 15px 15px 0px rgba(243, 156, 18, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Recipes Section */
.recipes {
    background: #ecf0f1;
    transform: rotate(0.1deg);
}

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

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e74c3c;
    box-shadow: 5px 5px 0px #e74c3c, 10px 10px 0px rgba(231, 76, 60, 0.3);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: rotate(1deg) translateY(-10px);
    box-shadow: 3px 3px 0px #e74c3c, 15px 15px 0px rgba(231, 76, 60, 0.3);
}

.recipe-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image {
    transform: scale(1.1);
}

.recipe-card h3 {
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.recipe-card p {
    padding: 0 1rem;
    color: #7f8c8d;
}

.recipe-time {
    display: block;
    padding: 1rem;
    color: #e74c3c;
    font-weight: bold;
    transform: rotate(-0.5deg);
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    transform: rotate(-0.1deg);
}

.blog-section h2 {
    color: white;
}

.blog-section h2::after {
    background: #f1c40f;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #f1c40f;
    box-shadow: 5px 5px 0px #f1c40f, 10px 10px 0px rgba(241, 196, 15, 0.3);
    transform: rotate(1deg);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.blog-card:hover {
    transform: rotate(-1deg) translateY(-10px);
    box-shadow: 3px 3px 0px #f1c40f, 15px 15px 0px rgba(241, 196, 15, 0.3);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: #27ad5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #9b59b6;
}

.blog-date {
    color: #9b59b6;
    font-size: 0.9rem;
    transform: rotate(-0.3deg);
}

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

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    transform: rotate(0.2deg);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #3498db;
    box-shadow: 5px 5px 0px #3498db, 10px 10px 0px rgba(52, 152, 219, 0.3);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: rotate(1deg) translateY(-5px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid #3498db;
}

.testimonial-card blockquote {
    font-style: italic;
    margin: 1rem 0;
    color: #7f8c8d;
    transform: rotate(0.2deg);
}

.testimonial-card cite {
    font-weight: bold;
    color: #3498db;
    transform: rotate(-0.3deg);
    display: block;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    transform: rotate(-0.1deg);
}

.newsletter h2 {
    color: white;
    text-align: center;
}

.newsletter h2::after {
    background: #f1c40f;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

.newsletter p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 3px solid #fff;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    color: #2c3e50;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #f1c40f;
    transform: rotate(0.5deg);
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.3);
}

.form-group input::placeholder {
    color: #95a5a6;
}

/* Contact */
.contact {
    background: #2c3e50;
    color: white;
    transform: rotate(0.1deg);
}

.contact h2 {
    color: white;
    text-align: center;
}

.contact h2::after {
    background: #e74c3c;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: rotate(1deg) translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item h3 {
    color: #f1c40f;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #34495e;
    color: white;
    padding: 3rem 0 1rem;
    transform: rotate(-0.1deg);
}

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

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

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
    color: #f1c40f;
    margin-bottom: 1rem;
    transform: rotate(-0.5deg);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
    transform: rotate(0.2deg);
}

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

.footer-links a:hover,
.footer-legal a:hover,
.footer-links a.active,
.footer-legal a.active {
    color: #f1c40f;
}

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

.social-links a {
    color: #bdc3c7;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.social-links a:hover {
    color: #f1c40f;
    transform: rotate(2deg) scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #4a5f7a;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1rem;
    z-index: 1001;
    border-top: 4px solid #e74c3c;
    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-wrap: wrap;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    border: 3px solid #e74c3c;
    box-shadow: 5px 5px 0px #e74c3c;
    transform: rotate(-1deg);
}

.cookie-category {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #ecf0f1;
}

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

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

.cookie-category p {
    margin-top: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Page-specific Styles */

/* About Company Page */
.about-company {
    padding: 2rem 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    transform: rotate(-0.2deg);
}

.about-hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 20px;
    box-shadow: 5px 5px 0px #27ae60;
}

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

.story-content {
    transform: rotate(0.3deg);
}

.story-image {
    text-align: center;
    transform: rotate(-1deg);
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 5px 5px 0px #3498db;
}

.company-mission,
.company-values,
.company-products,
.company-contact {
    margin: 4rem 0;
}

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

.mission-card,
.product-card {
    background: #3498dbc8;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #3498db;
    box-shadow: 3px 3px 0px #3498db;
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.mission-card:hover,
.product-card:hover {
    transform: rotate(-1deg) translateY(-5px);
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.value-item {
    background: #3498dbc8;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #bdc3c7;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: rotate(0.5deg);
    border-color: #27ae60;
}

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

.contact-section {
    background: #3498dbc8;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #e74c3c;
    transform: rotate(1deg);
}

/* Blog Page */
.blog-page {
    padding: 2rem 0;
}

.blog-hero {
    text-align: center;
    margin-bottom: 4rem;
    transform: rotate(-0.2deg);
}

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

.blog-card-full {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #9b59b6;
    box-shadow: 5px 5px 0px #9b59b6;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.blog-card-full:hover {
    transform: rotate(0.5deg) translateY(-5px);
}

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

.blog-content-full {
    padding: 2rem;
}

.blog-content-full h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content-full h2 a:hover {
    color: #9b59b6;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Article Pages */
.article-page {
    padding: 2rem 0;
}

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

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.article-hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: 5px 5px 0px #e74c3c;
}

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

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    transform: rotate(0.1deg);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    font-weight: bold;
    color: #7f8c8d;
}

.article-share a {
    color: #7f8c8d;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.article-share a:hover {
    color: #3498db;
    transform: rotate(2deg) scale(1.2);
}

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

.legal-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

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

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 3px solid #3498db;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.important-notice {
    background: #fff3cd;
    border: 3px solid #f1c40f;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    transform: rotate(-0.5deg);
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

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

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

.thanks-icon svg {
    color: #27ae60;
    filter: drop-shadow(3px 3px 0px rgba(39, 174, 96, 0.3));
}

.thanks-message {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    transform: rotate(-0.2deg);
}

.what-next {
    margin: 4rem 0;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    transform: rotate(0.5deg);
}

.step-number {
    background: #27ae60;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 3px 3px 0px rgba(39, 174, 96, 0.3);
}

.newsletter-benefits {
    margin: 4rem 0;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #27ae60;
    box-shadow: 3px 3px 0px #27ae60;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: rotate(1deg) translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.explore-now {
    margin: 4rem 0;
}

.explore-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-follow {
    margin: 4rem 0;
}

.social-links-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 3px solid #3498db;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

.contact-info {
    margin: 4rem 0;
    background: #3498db;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #e74c3c;
    box-shadow: 5px 5px 0px #e74c3c;
    transform: rotate(0.5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .about-story {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid,
    .recipes-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-card-full {
        grid-template-columns: 1fr;
    }
    
    .blog-image-full {
        height: 200px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .explore-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .contact-details,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-social,
    .social-links,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    * {
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transform: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn {
        border-width: 4px;
    }
    
    .service-card,
    .recipe-card,
    .blog-card,
    .testimonial-card {
        border-width: 4px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }
    
    .hero,
    .about-section,
    .services,
    .recipes,
    .testimonials {
        background: #2a2a2a;
    }
    
    .service-card,
    .recipe-card,
    .blog-card,
    .testimonial-card {
        background: #3a3a3a;
        color: #e0e0e0;
    }
}
