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

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

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

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

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

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #4A90A4;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2E7D99;
    color: white;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content i {
    font-size: 1.5rem;
    margin-right: 10px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-accept-all {
    background: #4A90A4;
    color: white;
}

.btn-accept-all:hover {
    background: #6BA3B0;
}

.btn-necessary {
    background: white;
    color: #2E7D99;
}

.btn-necessary:hover {
    background: #f0f0f0;
}

.btn-settings {
    background: transparent;
    color: white;
    border: 1px solid white !important;
}

.btn-settings:hover {
    background: rgba(255,255,255,0.1);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

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

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

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

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

.cookie-option span {
    font-size: 14px;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #2E7D99;
    color: white;
    transition: background-color 0.3s ease;
}

.cookie-modal-buttons button:hover {
    background: #4A90A4;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E7D99;
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: #333;
    font-weight: 500;
}

.nav-link:hover {
    background: #f0f8ff;
    color: #2E7D99;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2E7D99;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2E7D99, #4A90A4);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 125, 153, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 153, 0.4);
    color: white;
}

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

.services, .reviews, .blog-preview {
    background: white;
}

.about {
    background: #f8f9fa;
}

.contact {
    background: linear-gradient(135deg, #2E7D99, #4A90A4);
    color: white;
}

.contact h2 {
    color: white;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #4A90A4;
}

.service-card i {
    font-size: 3rem;
    color: #4A90A4;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2E7D99;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 2rem;
    color: #4A90A4;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #2E7D99;
}

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

.about-svg {
    width: 100%;
    max-width: 400px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #4A90A4;
}

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

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2E7D99;
    font-weight: 600;
}

.reviewer i {
    font-size: 1.5rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h4 {
    color: white;
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    color: rgba(255,255,255,0.9);
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: white;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2E7D99;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Blog Preview */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #4A90A4;
}

.blog-icon {
    font-size: 2.5rem;
    color: #4A90A4;
    margin-bottom: 20px;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: #2E7D99;
}

.blog-card h3 a:hover {
    color: #4A90A4;
}

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

.read-more {
    color: #4A90A4;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2E7D99;
    padding: 15px 30px;
    border: 2px solid #2E7D99;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2E7D99;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 153, 0.2);
}

/* Footer */
.footer {
    background: #2E7D99;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #2E7D99;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.thank-you-svg {
    width: 200px;
    height: 200px;
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2E7D99;
}

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

.thank-you-details {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.step {
    text-align: center;
    padding: 20px;
}

.step i {
    font-size: 2.5rem;
    color: #4A90A4;
    margin-bottom: 15px;
}

.step h4 {
    color: #2E7D99;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 14px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2E7D99, #4A90A4);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 153, 0.3);
    color: white;
}

.emergency-contact {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    margin-top: 40px;
}

.emergency-contact h4 {
    color: #856404;
    margin-bottom: 10px;
}

.emergency-contact p {
    color: #856404;
    margin: 0;
}

.emergency-contact a {
    color: #856404;
    font-weight: 600;
}

.emergency-contact a:hover {
    color: #533f03;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: space-around;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid, .reviews-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        padding: 5px 8px;
        font-size: 13px;
    }
    
    .nav-link i {
        display: none;
    }
}

/* Blog and Article Styles */
.nav-link.active {
    background: #f0f8ff;
    color: #2E7D99;
    font-weight: 600;
}

/* Blog Header */
.blog-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2E7D99;
}

.blog-header p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.blog-header-svg {
    width: 100%;
    max-width: 300px;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
    background: white;
}

.blog-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 5px solid #4A90A4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.blog-meta i {
    color: #4A90A4;
}

.blog-tags {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.tag {
    background: #f0f8ff;
    color: #2E7D99;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #e0e7ff;
}

.tag i {
    margin-right: 5px;
    font-size: 10px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #2E7D99, #4A90A4);
    color: white;
}

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

.newsletter-text h3 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-input {
    display: flex;
    gap: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-input button {
    background: #FFD700;
    color: #2E7D99;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-input button:hover {
    background: #FFA500;
    transform: translateY(-1px);
}

/* Article Page Styles */
.article-page {
    padding-top: 80px;
}

.article-header {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #4A90A4;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #4A90A4;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2E7D99;
}

.breadcrumb i {
    color: #999;
    font-size: 12px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2E7D99;
}

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

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.meta-item i {
    color: #4A90A4;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: white;
}

.article-intro {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid #4A90A4;
}

.article-intro-svg {
    width: 100%;
    max-width: 400px;
    height: 200px;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    margin: 0;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2E7D99;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f8ff;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #4A90A4;
}

.article-content h4 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    color: #2E7D99;
}

.article-content ul, .article-content ol {
    padding-left: 30px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.tips-box, .insider-tip, .exploration-tip {
    background: linear-gradient(135deg, #fff3cd 0%, #fef8e1 100%);
    border: 1px solid #f8d7a1;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
}

.tips-box h4, .insider-tip h4, .exploration-tip h4 {
    color: #856404;
    margin-bottom: 10px;
}

.tips-box p, .insider-tip p, .exploration-tip p {
    color: #856404;
    margin: 0;
}

.tips-box i, .insider-tip i, .exploration-tip i {
    color: #FFD700;
    margin-right: 10px;
}

.food-pairing, .tasting-step {
    background: #f0f8ff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 4px solid #4A90A4;
}

.food-pairing h4, .tasting-step h4 {
    color: #2E7D99;
    margin-bottom: 10px;
}

.food-pairing i, .tasting-step i {
    color: #4A90A4;
    margin-right: 8px;
}

.article-conclusion {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid #e0e7ff;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2E7D99;
}

/* Article Footer */
.article-footer {
    padding: 60px 0;
    background: #f8f9fa;
}

.share-section, .related-articles, .cta-section {
    margin-bottom: 50px;
}

.share-section h4, .related-articles h4, .cta-section h4 {
    margin-bottom: 20px;
    color: #2E7D99;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
}

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

.related-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #4A90A4;
}

.related-card i {
    font-size: 2rem;
    color: #4A90A4;
    margin-bottom: 15px;
}

.related-card h5 {
    color: #2E7D99;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.cta-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e0e7ff;
}

.cta-section h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
}

/* Blog and Article Responsive */
@media (max-width: 768px) {
    .blog-header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-input {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .tips-box, .insider-tip, .exploration-tip, .food-pairing, .tasting-step {
        padding: 15px;
    }
    
    .article-intro {
        padding: 20px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 80px;
}

.legal-header {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #4A90A4;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2E7D99;
}

.legal-intro {
    color: #666;
    font-style: italic;
    font-size: 14px;
}

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

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2E7D99;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f8ff;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #4A90A4;
}

.legal-section h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #2E7D99;
}

.legal-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info-legal {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4A90A4;
    margin: 20px 0;
}

.contact-info-legal p {
    margin-bottom: 8px;
}

.contact-info-legal i {
    color: #4A90A4;
    margin-right: 8px;
    width: 16px;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 20px 0;
}

.cookie-table h4 {
    color: #2E7D99;
    margin-bottom: 15px;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th {
    background: #2E7D99;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-settings-info {
    background: linear-gradient(135deg, #fff3cd 0%, #fef8e1 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #FFD700;
    text-align: center;
    margin: 20px 0;
}

.cookie-settings-btn {
    background: #2E7D99;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: #4A90A4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 153, 0.3);
}

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #4A90A4;
}

.faq-item h4 {
    color: #2E7D99;
    margin-bottom: 10px;
}

.faq-item p {
    margin: 0;
    color: #555;
}

.faq-item i {
    color: #FFD700;
    margin-right: 8px;
}

.footer-section a.active {
    color: #FFD700;
    font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 500px;
    }
    
    .contact-info-legal {
        padding: 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
}