/* CSS Variables for German-themed colors */
:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --accent-color: #2C5530; /* Dark Green */
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #FAFAFA;
    --light-bg: #F8F9FA; /* Light background for sections */
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

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

.cookie-content i {
    font-size: 24px;
    color: var(--primary-color);
}

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

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

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

.btn-necessary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-custom {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cookie-banner.hidden {
    display: none;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 2px solid var(--primary-color);
}

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

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

.nav-logo i {
    font-size: 28px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    top: 100%;
    left: 0;
    border: 1px solid var(--border-color);
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/banner-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 i {
    margin-right: 15px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

.welcome-item {
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.welcome-item:hover {
    transform: translateY(-10px);
}

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

.welcome-content {
    padding: 30px;
}

.welcome-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-content h3 i {
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Featured Recipes */
.featured-recipes {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

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

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

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

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

.recipe-info {
    padding: 25px;
}

.recipe-info h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-info h3 i {
    color: var(--primary-color);
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--light-text);
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background: var(--accent-color);
    color: var(--white);
    position: relative;
    z-index: 1;
}

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

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
    z-index: 1;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header i {
    font-size: 48px;
    color: var(--primary-color);
}

.stars {
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content i {
    font-size: 48px;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    min-width: 250px;
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 50px 0 20px;
    position: relative;
    z-index: 1;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    color: var(--white);
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .recipe-grid,
    .welcome-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .welcome-grid,
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-item,
    .recipe-card {
        margin: 0 10px;
    }
}

/* Page-specific styles */
.page-header {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 100px 0 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-section {
    padding: 60px 0;
}

.recipe-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-meta {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Legal Pages Styles */
.legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-nav {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.legal-nav h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 12px;
}

.legal-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.legal-nav a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.legal-text {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.legal-intro {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.legal-section h4 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.info-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.data-list ul,
.scope-list ul,
.prohibited-list ul,
.security-measures ul {
    margin: 15px 0;
    padding-left: 20px;
}

.data-list li,
.scope-list li,
.prohibited-list li,
.security-measures li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.right-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.storage-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.storage-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
}

.storage-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* AGB Specific Styles */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-item h3 {
    color: var(--primary-color);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.course-conditions ul {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.catering-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.catering-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.catering-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pricing-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pricing-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cancellation-policy {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.liability-exclusions {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.copyright-info {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid var(--secondary-color);
}

/* Cookie Policy Specific Styles */
.cookie-settings-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    margin-bottom: 40px;
}

.settings-info {
    text-align: center;
}

.settings-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.settings-btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.cookie-explanation,
.cookie-purposes {
    margin: 30px 0;
}

.cookie-properties,
.cookie-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.property-item,
.purpose-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.property-item i,
.purpose-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-item h4,
.purpose-item h3 {
    color: var(--primary-color);
    margin: 15px 0 10px 0;
}

.cookie-types-overview {
    margin: 30px 0;
}

.cookie-type {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.type-header h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.type-header.necessary i { color: #dc3545; }
.type-header.functional i { color: #007bff; }
.type-header.analytical i { color: #28a745; }
.type-header.marketing i { color: #ffc107; }

.status {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status.required {
    background: #dc3545;
    color: white;
}

.status.optional {
    background: #6c757d;
    color: white;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.cookie-table tr:hover {
    background: var(--light-bg);
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.important-note i {
    color: #ffc107;
    font-size: 20px;
    margin-top: 3px;
}

.functional-features {
    margin: 30px 0;
}

.feature-category {
    margin-bottom: 30px;
}

.feature-category h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.third-party-services {
    margin: 30px 0;
}

.service-category {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.service-category h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.service-item {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.management-method {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.manage-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.manage-btn.secondary {
    background: var(--secondary-color);
}

.manage-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.browser-guide {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.browser-guide i {
    font-size: 40px;
    margin-bottom: 15px;
}

.legal-basis {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid var(--primary-color);
}

/* Responsive Design for Legal Pages */
@media (max-width: 968px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-nav {
        position: static;
        order: 2;
    }
    
    .legal-text {
        order: 1;
    }
    
    .rights-grid,
    .services-overview,
    .cookie-properties,
    .cookie-purposes {
        grid-template-columns: 1fr;
    }
}

/* Article Layout Styles */
.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 40px;
    margin-top: 70px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
    margin: 0 10px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.9;
}

.article-category {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

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

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    text-align: center;
    margin: 40px 0;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.image-caption {
    font-style: italic;
    color: var(--light-text);
    margin-top: 15px;
    font-size: 0.9rem;
}

.article-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-text h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.article-text h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

.article-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .article-header {
        padding: 60px 0 30px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-content {
        padding: 40px 0;
    }
    
    .article-text h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Article-specific styles for enhanced content display */
.ingredient-list {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.ingredient-list li {
    margin: 10px 0;
    padding-left: 10px;
}

.ingredient-list strong {
    color: var(--primary-color);
}

.quote-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    box-shadow: var(--shadow);
}

.quote-box blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quote-box i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.quote-box cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: normal;
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.variation-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.variation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.variation-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.variation-card i {
    margin-right: 8px;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.history-timeline {
    margin: 30px 0;
}

.history-timeline .timeline-item {
    border-left: 4px solid var(--secondary-color);
}

.history-timeline .timeline-marker {
    background: var(--secondary-color);
}

.winter-benefits {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.recipe-showcase {
    margin: 30px 0;
}

.showcase-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.showcase-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.showcase-item i {
    margin-right: 8px;
}

.tips-box {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid var(--secondary-color);
}

.tips-box h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tradition-note {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive adjustments for article elements */
@media (max-width: 768px) {
    .variations-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -15px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .quote-box {
        padding: 20px;
    }
    
    .showcase-item {
        padding: 20px;
    }
}

/* Additional article-specific styles for different content types */
.grain-showcase,
.vegetable-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.grain-card,
.veg-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.grain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.grain-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.grain-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.grain-properties {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grain-properties span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.regional-breads {
    margin: 30px 0;
}

.region-section {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid var(--primary-color);
}

.region-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.region-section i {
    margin-right: 10px;
}

.region-section ul {
    list-style: none;
    padding-left: 0;
}

.region-section li {
    background: var(--white);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vegetable-showcase {
    margin: 30px 0;
}

.veg-category {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid var(--secondary-color);
}

.veg-category h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.veg-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.veg-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cooking-tips {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #e9ecef;
}

.cooking-tips h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.cooking-tips ul {
    margin-bottom: 0;
}

.cooking-tips li {
    margin: 5px 0;
    color: #6c757d;
}

.tradition-list {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid var(--primary-color);
}

.tradition-list li {
    margin: 15px 0;
    padding-left: 10px;
}

.tradition-list strong {
    color: var(--primary-color);
}

.dessert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.dessert-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.dessert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dessert-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.dessert-card i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.drinks-section {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid var(--secondary-color);
}

.drinks-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.drinks-section h3:first-child {
    margin-top: 0;
}

.atmosphere-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tip-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tip-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tip-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .grain-showcase,
    .dessert-grid,
    .atmosphere-tips {
        grid-template-columns: 1fr;
    }
    
    .grain-card,
    .veg-item,
    .dessert-card,
    .tip-item {
        padding: 20px;
    }
    
    .region-section,
    .veg-category,
    .drinks-section {
        padding: 20px;
    }
    
    .grain-card i {
        font-size: 2.5rem;
    }
    
    .tip-item i {
        font-size: 2rem;
    }
}
