/**
 * Bibercare Website - Haupt-Stylesheet
 * Datei: public/assets/css/style.css
 * Version: 1.0 mit FontAwesome Integration
 * Contact Style in public/assets/css/modules/contact.css
 */
 
/* ==========================================
   CSS RESET & GRUNDEINSTELLUNGEN
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primäre Farben */
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #e8f2ff;

    /* Text-Farben */
    --text-dark: #2d3748;
    --text-color: #2d3748;
    --text-light: #718096;
    --text-muted: #718096;

    /* System-Farben */
    --success-color: #48bb78;
    --border-color: #e2e8f0;
    --light-gray: #f8f9fa;

    /* Box Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    padding-top: 70px; /* Platz für fixed Header */
}

.d-none {
    display: none !important;
}

/* ==========================================
   FONTAWESOME ICON STYLING
   ========================================== */

.fas,
.fa {
    font-weight: 900;
}

.service-icon i,
.trust-icon i {
    color: var(--primary-color);
}

/* ==========================================
   DEBUG INFO
   ========================================== */

.debug-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.debug-info+.header {
    margin-top: 60px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-content {
    margin-top: 0;
    padding-top: 0;
}

/* Mobile Header Anpassungen */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 55px;
    }
}

/* Wenn System Notice da ist */
body:has(.system-notice) {
    padding-top: 110px;
}

@media (max-width: 768px) {
    body:has(.system-notice) {
        padding-top: 95px;
    }
}

@media (max-width: 480px) {
    body:has(.system-notice) {
        padding-top: 85px;
    }
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(44, 90, 160, 0.1) 100%);
    padding: 120px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================
   TRUST INDICATORS
   ========================================== */

.trust-section {
    background: white;
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.trust-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--secondary-color);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-icon i {
    color: var(--primary-color);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-link:hover {
    gap: 1rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 5rem 2rem;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-image {
    background: var(--accent-color);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
}

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #a0aec0;
    text-decoration: none;
    padding: 0.5rem;
}

.legal-links a:hover {
    color: white;
}

/* Footer Logo Anpassungen */
.footer-logo svg,
.footer-logo .logo-image,
.footer .logo svg,
.footer .logo .logo-image {
    height: 35px;
    max-width: 200px;
}

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1rem 2rem;
    z-index: 1000;
    display: none;
}

.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;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: 1px solid white;
    background: transparent;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cookie-btn.accept {
    background: var(--success-color);
    border-color: var(--success-color);
}

.cookie-btn:hover {
    background: white;
    color: var(--text-dark);
}

/* ==========================================
   ANIMATIONEN
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   CAROUSEL SECTION
   ========================================== */

.carousel-section {
    position: relative;
    margin: 2rem 0;
    background: var(--light-gray);
    padding: 2rem 0;
}

.image-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    width: 100%;
    padding: 2rem;
    color: white;
}

.carousel-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
}

.carousel-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
    color: var(--text-muted);
}

.carousel-fallback>div {
    max-width: 400px;
    padding: 2rem;
}

.carousel-fallback i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.carousel-fallback h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.carousel-fallback p {
    margin-bottom: 1rem;
}

.carousel-fallback small {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
}

/* ==========================================
   LEGAL PAGES - IMPRESSUM & DATENSCHUTZ
   ========================================== */

.legal-section {
    padding: 1rem 2rem 3rem 2rem;
    background: white;
    min-height: 80vh;
}

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

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--text-dark);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

.legal-text {
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-text h2 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.legal-text h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.legal-text h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.legal-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

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

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: var(--primary-color);
}

.contact-info-block {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-info-block h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.contact-info-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

.last-updated {
    text-align: center;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.last-updated p {
    color: var(--text-muted);
    font-style: italic;
}

.last-updated i {
    margin-right: 0.5rem;
}

.phone-placeholder {
    color: var(--text-muted);
    font-style: italic;
    background: var(--accent-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    /* CTA-Button auf Mobile verstecken */
    .cta-button {
        display: none !important;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo svg,
    .logo .logo-image {
        height: 45px;
        max-width: 200px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 0;
        font-size: 1.1rem;
        display: block;
        text-align: center;
        border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-section {
        padding: 0.5rem 1rem 2rem 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .legal-text h2 i {
        margin-bottom: 0.25rem;
    }
    
    .legal-text h3 {
        font-size: 1.1rem;
    }
    
    .legal-text h4 {
        font-size: 1rem;
    }
    
    .contact-info-block {
        padding: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .footer-logo svg,
    .footer-logo .logo-image,
    .footer .logo svg,
    .footer .logo .logo-image {
        height: 30px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo svg,
    .logo .logo-image {
        height: 40px;
        max-width: 180px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .mobile-menu-toggle {
        font-size: 1.8rem;
        padding: 0.5rem;
    }

    .legal-section {
        padding: 0.5rem 0.5rem 2rem 0.5rem;
    }
    
    .legal-text {
        font-size: 0.95rem;
    }
    
    .legal-text h2 {
        font-size: 1.2rem;
    }
    
    .legal-text h3 {
        font-size: 1.05rem;
    }
    
    .legal-text ul {
        margin-left: 1.5rem;
    }
    
    .contact-info-block {
        padding: 0.8rem;
    }
}

@media (min-width: 769px) {
    .logo svg,
    .logo .logo-image {
        height: 55px;
        max-width: 280px;
    }

    .cta-button {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .logo svg,
    .logo .logo-image {
        height: 60px;
        max-width: 300px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .header,
    .cookie-banner {
        display: none !important;
    }

    .hero {
        background: white !important;
        padding: 2rem 0 !important;
    }

    .section-title {
        color: black !important;
    }
    
    .legal-section {
        padding: 0;
    }
    
    .breadcrumb {
        display: none;
    }
    
    .legal-block {
        page-break-inside: avoid;
        border-bottom: 1px solid #ccc;
    }
    
    .legal-text a {
        color: #000 !important;
        text-decoration: underline;
    }
    
    .contact-info-block {
        background: #f5f5f5 !important;
        border-left: 4px solid #333 !important;
    }
}