/* ======================= GRUNDEINSTELLUNGEN & VARIABLEN ======================= */
/* Accessibility: Focus indicators */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Accessibility: Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 999;
}

.skip-link:focus {
    top: 6px;
}

/* ======================= GRUNDEINSTELLUNGEN & VARIABLEN ======================= */
:root {
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #2d3748;
    --accent-color: #1e3a8a;
    --text-color: #4a5568;
    --heading-color: #1a202c;
    --background-color: #ffffff;
    --white: #fff;
    --black: #000000;
    --border-color: #e2e8f0;

    --font-family: 'Poppins', sans-serif;
    --transition-speed: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text-color); background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { color: var(--heading-color); }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ======================= HEADER ======================= */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: var(--dark-gray); }
.main-nav ul { display: flex; gap: 40px; }
.main-nav a { font-weight: 500; font-size: 1rem; transition: color var(--transition-speed); }
.main-nav a:hover, .main-nav a.active { color: var(--accent-color); }
.cta-button { background-color: var(--light-gray); color: var(--dark-gray); padding: 12px 24px; border-radius: 8px; font-weight: 600; transition: all var(--transition-speed); }
.cta-button:hover { background-color: var(--accent-color); color: var(--white); }
.burger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-gray); }

/* ======================= HERO SEKTION ======================= */
#hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden; /* Wichtig, um die Formen zu begrenzen */
}
.hero-container { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 80px; }
.eyebrow-text { font-size: 0.9rem; font-weight: 600; color: var(--accent-color); letter-spacing: 1px; margin-bottom: 15px; display: block; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}
.cta-button-secondary { background-color: var(--accent-color); color: var(--white); padding: 18px 36px; border-radius: 8px; font-weight: 600; font-size: 1.1rem; display: inline-block; transition: all var(--transition-speed); }
.cta-button-secondary:hover { background-color: var(--heading-color); transform: translateY(-2px); }
.hero-image-area img { width: 100%; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.shape { position: absolute; border-radius: 50%; z-index: -1; }
.shape-1 { width: 400px; height: 400px; background-color: var(--light-gray); bottom: -150px; left: -150px; }
.shape-2 { width: 300px; height: 300px; background-color: var(--accent-color); opacity: 0.5; top: -100px; right: -100px; }

/* Öffnungszeiten-Karte in der Hero-Sektion */
.opening-hours-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: none;
}
.opening-hours-card h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-gray);
}
.opening-hours-card ul { margin-bottom: 30px; }
.opening-hours-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}
.opening-hours-card li:last-child { border-bottom: none; }
.opening-hours-card li strong { font-weight: 600; color: var(--heading-color); }
.opening-hours-card .cta-button-secondary { width: 100%; text-align: center; margin-bottom: 10px; }
.no-email-note { 
    display: block; 
    text-align: center; 
    color: #999; 
    font-size: 0.75rem; 
    margin-top: 5px; 
    opacity: 0.8; 
}

/* ======================= ALLGEMEINE INHALTSSEKTIONEN ======================= */
.content-section { padding: 120px 0; }
.bg-light { background-color: #f7f9f9; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 15px; }
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 60px auto; font-size: 1.1rem; line-height: 1.6; }

/* ======================= LEISTUNGEN (SERVICES) ======================= */
#services .container { max-width: 1400px; }
/* Services Layout */
.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.services-secondary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card.featured {
    padding: 50px 40px;
    border: 2px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-card.featured i {
    color: var(--accent-color);
}

.service-card.featured h3 {
    font-size: 1.4rem;
}

.services-secondary-grid .service-card {
    padding: 30px 25px;
}

.services-secondary-grid .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.services-secondary-grid .service-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}
.service-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 12px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    transition: all var(--transition-speed);
    /* Flexbox für einheitliche Höhe und bessere Ausrichtung */
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.service-card i { font-size: 2.5rem; color: var(--medium-gray); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.service-content { 
    flex-grow: 1; 
    margin-bottom: 20px;
}
.service-preview { 
    line-height: 1.6; 
    margin-bottom: 0;
}
.service-full { 
    line-height: 1.6; 
    margin-bottom: 0;
    display: none;
}
.service-full.show { 
    display: block; 
}
.services-toggle {
    text-align: center;
    margin-top: 40px;
}
.toggle-all-btn {
    background-color: var(--dark-gray);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}
.toggle-all-btn:hover {
    background-color: var(--heading-color);
    transform: translateY(-2px);
}

/* ======================= TEAM ======================= */
/* Values Grid */
.about-intro {
    text-align: center;
    margin-bottom: 80px;
}

.values-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px; 
}

.value-item { 
    text-align: center; 
    position: relative;
}

.value-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px auto;
}

.value-item h4 { 
    margin-bottom: 15px; 
    color: var(--heading-color); 
    font-size: 1.2rem;
}

.value-item p { 
    color: var(--text-color); 
    line-height: 1.6;
}

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-member { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 12px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    transition: all var(--transition-speed);
    text-align: center;
}
.team-member:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.team-icon { 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    background-color: var(--light-gray); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px auto;
}
.team-icon i { 
    font-size: 2.5rem; 
    color: var(--accent-color); 
}
.team-member h4 { 
    margin-bottom: 10px; 
    font-size: 1.3rem; 
}
.team-member p { 
    line-height: 1.6; 
    color: var(--text-color);
}

/* ======================= ÜBER UNS (ABOUT) ======================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ======================= KONTAKT (CONTACT) ======================= */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: flex-start; }
.contact-form form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-group { display: flex; gap: 20px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1.1rem;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(162, 196, 180, 0.3);
}
.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}
.contact-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}
.contact-item:last-child {
    border-bottom: none;
}
.contact-info h4 {
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.contact-info p {
    line-height: 1.7;
    margin-bottom: 0;
}
.address-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}
.address-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ======================= STATIC CONTENT PAGES (Impressum, Datenschutz) ======================= */
.content-page {
    padding: 80px 0;
    background-color: var(--white);
}

/* ======================= COOKIE BANNER ======================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 20px 0;
    z-index: 1001;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}
.cookie-banner--hidden {
    transform: translateY(100%);
}
.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.cookie-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}
.cookie-content a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}
.cookie-btn-necessary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}
.cookie-btn-necessary:hover {
    background-color: var(--white);
    color: var(--dark-gray);
}
.cookie-btn-settings {
    background-color: var(--accent-color);
    color: var(--white);
}
.cookie-btn-settings:hover {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}
.cookie-btn-accept {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}
.cookie-btn-accept:hover {
    background-color: var(--white);
    color: var(--dark-gray);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
}
.cookie-settings-modal.show {
    display: flex;
}
.cookie-settings-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}
.cookie-category {
    margin-bottom: 30px;
}
.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.cookie-category h4 {
    margin: 0;
    color: var(--heading-color);
}
.cookie-category p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition-speed);
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition-speed);
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--accent-color);
}
input:checked + .slider:before {
    transform: translateX(26px);
}
input:disabled + .slider {
    background-color: var(--light-gray);
    cursor: not-allowed;
}

.cookie-btn-save {
    background-color: var(--dark-gray);
    color: var(--white);
}
.cookie-btn-save:hover {
    background-color: var(--heading-color);
}
.cookie-btn-cancel {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}
.cookie-btn-cancel:hover {
    background-color: var(--background-color);
}

/* ======================= LEGAL PAGES ======================= */
.legal-page { 
    padding: 140px 0 80px; 
    background-color: var(--light-gray); 
}
.legal-content { 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 50px; 
    background: var(--white); 
    border-radius: 16px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
}
.legal-content h1 { 
    color: var(--heading-color); 
    font-size: 2.5rem; 
    margin-bottom: 40px; 
    text-align: center; 
    font-weight: 700; 
    position: relative;
    line-height: 1.2;
}
.legal-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.legal-content h2 { 
    color: var(--heading-color); 
    font-size: 1.6rem; 
    margin: 50px 0 20px; 
    border-bottom: 3px solid var(--accent-color); 
    padding-bottom: 10px; 
    font-weight: 600; 
    line-height: 1.3;
}
.legal-content p { 
    color: var(--text-color); 
    line-height: 1.8; 
    margin-bottom: 30px; 
    font-size: 1.1rem; 
}
.legal-content ul { 
    margin: 30px 0; 
    padding-left: 30px; 
}
.legal-content li { 
    color: var(--text-color); 
    margin-bottom: 12px; 
    line-height: 1.8; 
    font-size: 1.1rem; 
}
.legal-content p strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* ======================= FOOTER ======================= */
.main-footer { background-color: var(--accent-color); color: var(--light-gray); padding: 80px 0 30px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-column h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }
.footer-column.about p { line-height: 1.8; opacity: 0.8; }
.footer-logo { color: var(--white); margin-bottom: 20px; }
.footer-logo img { filter: brightness(0) invert(1); }
.footer-column.links ul { display: flex; flex-direction: column; gap: 15px; }
.footer-column.links a:hover { color: var(--white); }
.footer-column.links i { margin-right: 10px; width: 20px; text-align: center; }
.footer-column.links li { display: flex; align-items: center; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; border: 1px solid var(--accent-color); border-radius: 50%; transition: all var(--transition-speed); }
.social-icons a:hover { background-color: var(--accent-color); color: var(--dark-gray); }
.footer-bottom { border-top: 1px solid #ffffff30; padding-top: 30px; text-align: center; opacity: 0.7; }
.footer-bottom a { font-weight: 600; }

/* ======================= RESPONSIVE DESIGN ======================= */
@media (max-width: 992px) {
    .main-nav { display: none; } /* Navigationslinks ausblenden */
    .cta-button { display: none; } /* Header-Button ausblenden */
    .burger { display: block; } /* Burger-Icon einblenden */

    /* Mobile Navigation (zuerst versteckt) */
    .main-nav {
        position: absolute;
        top: 80px; /* Höhe des Headers */
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
    }
    .main-nav.active {
        display: flex;
        transform: translateY(0);
    }
    .main-nav ul { flex-direction: column; text-align: center; gap: 20px; }
    
    /* Mobile Services Layout */
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Mobile Service Cards - kompakter */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card.featured {
        padding: 30px 25px;
    }
    
    .service-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    /* Für mobile: nur Preview-Text anzeigen, Full-Text verstecken */
    .service-full {
        display: none !important;
    }
    
    .service-preview {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Mobile Service Cards - wie Desktop ohne Plus-Symbol */
    .service-card.featured {
        cursor: default;
        position: relative;
    }
    
    /* Service-Full Text auch auf mobile anzeigen */
    .service-full {
        display: block !important;
    }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    
    /* Kleinerer Abstand zum Header */
    #hero {
        padding-top: 100px;
    }
    .hero-image-area { grid-row: 1; margin-bottom: 20px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content {
        /* Sicherstellen, dass der Text unter der Karte ist */
        grid-row: 2;
    }
    
    /* Mobile Hero Stats - kompakter und responsive */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
        padding: 20px 15px;
    }
    
    .stat-item {
        text-align: center;
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Mobile Servicezeiten-Karte zentrieren - näher zum Header */
    .opening-hours-card {
        padding: 25px 20px;
        text-align: center;
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    .opening-hours-card h4 {
        font-size: 1.3rem;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .opening-hours-card li {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 12px 0;
        text-align: center;
    }
    
    .opening-hours-card li strong {
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .opening-hours-card li span {
        font-size: 0.9rem;
        color: var(--text-color);
    }
    
    /* Hero Image Area näher zum Header */
    .hero-image-area {
        margin-bottom: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Values grid kompakter für mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-item {
        text-align: center;
        padding: 25px 15px;
    }
    
    .value-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto 15px;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-grid { grid-template-columns: 1fr; }
    
    /* Section Padding für mobile reduzieren */
    .content-section {
        padding: 80px 0;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .services-main-grid { grid-template-columns: 1fr; }
    .services-secondary-grid { grid-template-columns: 1fr; }
    
    .hero-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .contact-form .form-group {
        flex-direction: column;
    }
    
    /* Noch kompaktere Service Cards für sehr kleine Bildschirme */
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-preview {
        font-size: 0.9rem;
    }
    
    /* Noch kleinere Hero Stats für sehr kleine Bildschirme */
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Hero-Content Text besser zentrieren */
    .hero-content p {
        text-align: center;
        margin-bottom: 25px;
    }
    
    /* Noch kleinere Section Paddings für sehr kleine Bildschirme */
    .content-section {
        padding: 60px 0;
    }
    
    #hero {
        padding-top: 80px;
    }
    
    /* Legal Pages - mobile Anpassungen */
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        word-break: break-word;
        hyphens: auto;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
        margin: 40px 0 15px;
        line-height: 1.4;
    }
    
    /* Servicezeiten kompakt für sehr kleine Bildschirme */
    .opening-hours-card h4 {
        font-size: 1.2rem;
    }
    
    .opening-hours-card li strong {
        font-size: 0.9rem;
    }
    
    .opening-hours-card li span {
        font-size: 0.85rem;
    }
}
