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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

a {
    text-decoration: none;
    color: #e74c3c;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

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

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

.btn-primary:hover {
    background-color: #c0392b;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background-color: #e74c3c;
    color: white;
}

.btn-white {
    background-color: white;
    color: #e74c3c;
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: #c0392b;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #e74c3c;
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-primary {
    background-color: #e74c3c;
    color: white;
}

.bg-primary h2,
.bg-primary h3,
.bg-primary p {
    color: white;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
}

/* Company Info Section */
.info-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

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

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

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

/* Services Section */
.services-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card li {
    padding: 5px 0;
    color: #666;
}

.service-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

/* Advantages Section */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.advantage-number {
    background-color: #e74c3c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    color: #e74c3c;
    margin-bottom: 5px;
}

.testimonial-content span {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

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

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

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

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.blog-content p {
    margin-bottom: 20px;
    color: #666;
}

.blog-link {
    color: #e74c3c;
    font-weight: bold;
}

/* Subscription Section */
.subscription-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.subscription-info {
    flex: 1;
}

.subscription-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.subscription-forms {
    flex: 2;
    display: flex;
    gap: 30px;
}

.subscription-form,
.newsletter-form {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.subscription-form h3,
.newsletter-form h3 {
    color: white;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

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

.checkbox-label a {
    color: #ffd700;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #000c18;
    color: white;
    padding: 50px 0 20px;
}
.footer p{
    color: #fff;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    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-content p {
    margin: 0;
    color: #fff;
}

.cookie-content a {
    color: #e74c3c;
    text-decoration: underline;
}

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

.btn-accept-all,
.btn-necessary,
.btn-settings {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept-all:hover {
    background-color: #219a52;
}

.btn-necessary {
    background-color: #f39c12;
    color: #fff;
}

.btn-necessary:hover {
    background-color: #e67e22;
}

.btn-settings {
    background-color: #3498db;
    color: #fff;
}

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

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

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

.cookie-modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-option span {
    font-size: 0.9rem;
    color: #666;
}

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

.btn-save,
.btn-cancel {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-save {
    background-color: #27ae60;
    color: #fff;
}

.btn-save:hover {
    background-color: #219a52;
}

.btn-cancel {
    background-color: #95a5a6;
    color: #fff;
}

.btn-cancel:hover {
    background-color: #7f8c8d;
}
/* Cookie Settings Panel */
.cookie-settings-panel {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.cookie-settings-panel h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cookie-settings-panel p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-cookie-settings {
    background-color: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-settings:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}
@media (max-width: 768px){
        .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        
            .cookie-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
}
/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

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

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

/* About Page Styles */
.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
    text-align: center;
    margin-top: 50px;
}

.contact-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.contact-item {
    min-width: 200px;
    text-align: center;
}

.contact-item h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

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

.legal-content h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content h2 {
    color: #e74c3c;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #555;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.cookie-preferences {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.next-steps {
    margin: 50px 0;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    background-color: #e74c3c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.thank-you-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-follow {
    margin-top: 50px;
}

.social-follow .social-links {
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 25px;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e74c3c;
    color: white;
}

.featured-recipes {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.recipe-teaser {
    flex: 1;
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recipe-teaser img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.recipe-teaser h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.recipe-teaser p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Article Pages */
.article-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.article-hero-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-hero-content > div:first-child {
    flex: 1;
}

.article-image {
    flex: 1;
    text-align: center;
}

.article-image img {
    max-width: 400px;
    width: 100%;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.category {
    background-color: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

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

.article-content .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.article-body {
    flex: 2;
    max-width: none;
}

.article-body h2 {
    color: #e74c3c;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body h4 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 10px;
}

.article-body ul,
.article-body ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 8px;
    color: #555;
}

.tips-box {
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.tips-box h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.article-cta {
    background-color: #e74c3c;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.article-cta h3,
.article-cta p {
    color: white;
}

.article-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateX(5px);
}

.related-article img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.related-article h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
}

.prep-info {
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.prep-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.prep-item:last-child {
    border-bottom: none;
}

.prep-item strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .info-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        flex-direction: column;
    }
    
    .advantages-grid {
        flex-direction: column;
    }
    
    .advantage-item {
        min-width: 100%;
    }
    
    .subscription-content {
        flex-direction: column;
    }
    
    .subscription-forms {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .steps-grid,
    .featured-recipes {
        flex-direction: column;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .article-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-content .container {
        flex-direction: column;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .related-articles {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .related-article {
        min-width: 250px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .values-grid {
        flex-direction: column;
    }
    
    .social-follow .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}
.nav-menu.active {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    background-color: #fff;
    z-index: 1000;
}
