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

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8659;
    --accent-color: #d84315; /* Dunkleres Orange für besseren Kontrast (WCAG AA) */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Skip Link für Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    /* Verhindert Layout Shifts beim Font-Loading */
    font-display: swap;
    /* Reserviert Platz für Header und verhindert Body Shifts */
    padding-top: 0;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

#main-content {
    min-height: 100vh;
    display: block;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header-top {
    background: var(--primary-color);
    color: white;
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    overflow-x: hidden;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo-top {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-banner {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-banner-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-banner-link img {
    max-width: 400px;
    height: auto;
    display: block;
}

.logo-banner-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Mobile: Logo-Banner verkleinern */
@media (max-width: 768px) {
    .header-top {
        padding: 0 !important;
    }
    
    .header-top-content {
        padding: 8px 15px !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo-banner-link {
        font-size: 0.85rem;
        padding: 4px 8px;
        letter-spacing: 0;
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }
    
    .logo-banner {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        flex-shrink: 1;
        min-width: 0;
        display: flex;
        justify-content: center;
    }
    
    .hotline {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center;
        flex-wrap: wrap;
        box-sizing: border-box;
    }
    
    .hotline-link {
        font-size: 0.8rem !important;
        text-align: center;
        word-wrap: break-word;
        white-space: normal;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .service-hours {
        font-size: 0.75rem !important;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }
}

.logo-banner-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.hotline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    font-size: 1.2rem;
    color: white;
}

.hotline-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s;
    min-height: 1.5em;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

.hotline-link:hover {
    opacity: 0.9;
}

.service-hours {
    font-size: 0.9rem;
    min-height: 1.2em;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
    min-height: 70px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    min-height: 1.2em;
    line-height: 1.2;
    margin: 0;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
    .logo h1 {
        font-size: 1.4rem;
    }
    
    /* Hero-Section Textgrößen reduzieren */
    .hero-title {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }
    
    .hero-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    .hero-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero {
        min-height: auto !important;
        padding: 30px 0 !important;
    }
    
    .hero-content {
        min-height: auto !important;
        padding: 20px 0 !important;
    }
    
    .cta-button {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

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

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: left;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 1.2em;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
    max-width: 900px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-left: 0;
    margin-right: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
    min-height: 1.5em;
    line-height: 1.6;
    text-align: left;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 1.4em;
    line-height: 1.6;
    word-wrap: break-word;
    text-align: left;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: white;
}

.feature-icon i {
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #d84315; /* Dunkleres Orange für besseren Kontrast (WCAG AA) */
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
}

.cta-button:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Preise Section */
.preise-section {
    background: var(--bg-light);
}

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

.price-table {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-table:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.price-table-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-table-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.price-list {
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Leistungen Section */
.leistungen-section {
    background: white;
}

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

.leistung-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
}

.leistung-item .check-icon {
    flex-shrink: 0;
}

.leistung-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.leistung-item:hover .check-icon {
    color: white;
}

/* Info Section */
.info-section {
    background: var(--bg-light);
}

.info-content {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-content p {
    margin-bottom: 20px;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Zertifizierung Section */
.zertifizierung-section {
    background: white;
}

.zert-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.zert-content p {
    margin-bottom: 20px;
}

/* FAQ Section - Kompakt mit HTML5 Details/Summary */
.faq-section {
    background: var(--bg-light);
    padding: 40px 0;
}

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

.faq-item {
    background: white;
    border-radius: 5px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item[open] {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: white;
    list-style: none;
    outline: none;
}

/* Standard-Marker in allen Browsern entfernen */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::-moz-list-bullet {
    list-style-type: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-item[open] .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-question span {
    flex: 1;
    padding-right: 10px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.2s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 12px 15px;
    background: #fafafa;
    animation: fadeIn 0.3s ease;
    display: block;
}

/* Für Browser ohne native <details> Unterstützung */
.faq-item:not([open]) .faq-answer {
    display: none;
}

.faq-item[open] .faq-answer,
.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Anfrage Section */
.anfrage-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.anfrage-section .section-title {
    color: white;
}

.anfrage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
}

/* Kontakt Section */
.kontakt-section {
    background: var(--bg-light);
}

.kontakt-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.kontakt-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 40px;
    text-align: center;
}

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

.kontakt-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.kontakt-item a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

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

.bundeslaender {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.bundeslaender span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
/* Kontaktformular Responsive */
@media (max-width: 768px) {
    .kontaktformular {
        padding: 25px 20px !important;
    }

    .kontaktformular .form-section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .kontaktformular label[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        gap: 15px;
    }

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

    .header-top-content {
        flex-direction: column;
        text-align: center;
        gap: 8px !important;
        padding: 8px 0 !important;
    }
    
    .logo-banner {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .logo-banner-link {
        font-size: 0.8rem !important;
        padding: 4px 6px !important;
        max-width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
        letter-spacing: 0 !important;
    }
    
    .hotline {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hotline-link {
        font-size: 0.75rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }
    
    .service-hours {
        font-size: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    .hero-title {
        font-size: 0.864rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        text-align: left !important;
    }
    
    .hero-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    .hero-text {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .hero {
        min-height: auto !important;
        padding: 30px 0 !important;
    }
    
    .hero-content {
        min-height: auto !important;
        padding: 20px 0 !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .price-tables {
        grid-template-columns: 1fr;
    }

    .anfrage-steps {
        grid-template-columns: 1fr;
    }

    .kontakt-info {
        grid-template-columns: 1fr;
    }

    .bundeslaender {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 20px 0 !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        text-align: left !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 8px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        text-align: left !important;
    }
    
    .hero-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    .hero-text {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        min-height: auto !important;
        padding: 15px 0 !important;
    }
    
    /* Breadcrumb auf Mobile */
    .breadcrumb nav {
        font-size: 0.75rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .breadcrumb nav > div:last-child {
        margin-left: 0 !important;
        margin-top: 8px;
        width: 100%;
    }
    
    /* Grüne Header-Bereiche auf Mobile */
    .header-top-content {
        gap: 6px !important;
        padding: 6px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo-banner {
        width: 100% !important;
        justify-content: center !important;
        max-width: 100% !important;
    }
    
    .logo-banner-link {
        max-width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
    }
    
    .logo-banner-link img {
        max-width: 300px !important;
        height: auto !important;
        width: auto !important;
    }
    
    .hotline {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hotline-link {
        font-size: 0.75rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
    }
    
    .service-hours {
        font-size: 0.7rem !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    .cta-button {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }

    section {
        padding: 40px 0;
    }

    .price-table {
        padding: 15px;
    }
    
    /* Mobile Optimierungen */
    .header-top-content {
        flex-direction: column;
        text-align: center;
        gap: 6px !important;
        padding: 6px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo-banner {
        width: 100% !important;
        justify-content: center !important;
        max-width: 100% !important;
    }
    
    .logo-banner-link {
        max-width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
    }
    
    .logo-banner-link img {
        max-width: 300px !important;
        height: auto !important;
        width: auto !important;
    }
    
    .hotline {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hotline-link {
        font-size: 0.75rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
    }
    
    .service-hours {
        font-size: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Formular Mobile */
    .kontaktformular {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px; /* Verhindert Zoom auf iOS */
        padding: 12px;
    }
    
    /* Google Maps Mobile */
    iframe {
        height: 300px !important;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 10px 12px;
    }
    
    /* Skip Link Mobile */
    .skip-link:focus {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

/* Focus Styles für Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip Link Animation */
.skip-link {
    transition: top 0.3s ease;
}

/* Verbesserte Button-Styles für Touch-Geräte */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .cookie-btn {
        min-height: 44px; /* Mindestgröße für Touch-Targets */
        min-width: 44px;
    }
}
