/* style.css */
html, body { height: 100%; margin: 0; padding: 0; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #f4f7f6; color: #333; 
    display: flex; flex-direction: column; min-height: 100vh; 
}
header { 
    background-color: #ffffff; padding: 30px 20px; 
    border-bottom: 4px solid #4CAF50; text-align: center; 
}
header h1 { margin: 0 0 10px 0; color: #2c3e50; }
header p { margin: 0; color: #666; font-size: 1.1em; }
.container { 
    max-width: 1000px; width: 90%; margin: 40px auto; padding: 30px; 
    background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    border-radius: 8px; flex: 1; 
}
footer { 
    background-color: #2c3e50; color: white; text-align: center; 
    padding: 20px; margin-top: auto; 
}
footer a { color: #4CAF50; text-decoration: none; transition: color 0.3s;}
footer a:hover { color: #81c784; }
h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; }
   /* CSS-Trick: Aus dem weißen Container des Headers ausbrechen! */
    .full-width-breakout {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    /* Das große Titelbild über den ganzen Bildschirm */
    .hero-section {
        /* Ein echtes, funktionierendes Bild von einem schönen Haus/Garten */
        background: linear-gradient(rgba(26, 37, 47, 0.8), rgba(26, 37, 47, 0.7)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
        background-size: cover;
        color: white;
        text-align: center;
        padding: 150px 20px;
        margin-top: -20px; /* Zieht das Bild nahtlos ans Menü */
        font-family: 'Montserrat', sans-serif;
    }
    
    .hero-title {
        font-size: 4em;
        margin-bottom: 20px;
        font-weight: 800;
        letter-spacing: -1px;
        text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }
    
    .hero-subtitle {
        font-family: 'Open Sans', sans-serif;
        font-size: 1.4em;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        color: #f1f2f6;
    }
    
    .cta-button {
        background-color: #27ae60;
        color: white;
        padding: 20px 50px;
        text-decoration: none;
        font-size: 1.3em;
        border-radius: 50px;
        font-weight: 700;
        transition: all 0.3s ease;
        display: inline-block;
        box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cta-button:hover {
        background-color: #2ecc71;
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(39, 174, 96, 0.6);
    }

    /* Der Bereich mit den Leistungen */
    .services-wrapper {
        background-color: #f8f9fa;
        padding: 100px 20px;
    }
    
    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.8em;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 60px;
        font-weight: 800;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .service-card {
        background: white;
        padding: 50px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-bottom: 5px solid transparent;
        font-family: 'Open Sans', sans-serif;
    }
    
    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-bottom: 5px solid #27ae60;
    }
    
    .service-icon {
        font-size: 4em;
        margin-bottom: 25px;
        display: inline-block;
        background: #eafaf1;
        width: 100px;
        height: 100px;
        line-height: 100px;
        border-radius: 50%;
    }
    
    .service-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5em;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .service-desc {
        color: #7f8c8d;
        line-height: 1.7;
        font-size: 1.05em;
    }

    /* Vertrauens-Bereich */
    .trust-section {
        background-color: white;
        padding: 80px 20px;
        text-align: center;
    }
    
    .trust-grid {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .trust-item {
        max-width: 250px;
        font-family: 'Open Sans', sans-serif;
    }
    
    .trust-item h4 {
        font-family: 'Montserrat', sans-serif;
        color: #2c3e50;
        margin-top: 20px;
        font-size: 1.3em;
        font-weight: 700;
    }
	.blog-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .blog-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease-in-out;
    }
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }
    .blog-content {
        padding: 20px;
    }
    .blog-title {
        font-size: 1.3em;
        color: #2c3e50;
        margin: 0 0 10px 0;
    }
    .blog-date {
        font-size: 0.85em;
        color: #888;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .blog-text {
        color: #444;
        line-height: 1.6;
    }
    
    /* WICHTIG: Verhindert, dass Bilder aus dem Editor zu groß werden! */
    .blog-text img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 4px;
        margin: 10px 0;
    }
	    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 35px;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        color: #FFF;
    }

    /* Icon-Größe anpassen */
    .whatsapp-float svg {
        width: 35px;
        height: 35px;
        fill: currentColor;
    }

    /* Optionaler Hinweis-Text, der beim Hovern erscheint */
    .whatsapp-tooltip {
        position: absolute;
        right: 75px;
        background-color: #ffffff;
        color: #1e293b;
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        white-space: nowrap;
        pointer-events: none;
    }
    
    /* Kleines Dreieck am Tooltip */
    .whatsapp-tooltip::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -5px;
        transform: translateY(-50%);
        border-width: 5px 0 5px 5px;
        border-style: solid;
        border-color: transparent transparent transparent #ffffff;
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
    }

    /* Auf Handys etwas kleiner und näher am Rand */
    @media (max-width: 768px) {
        .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
        .whatsapp-float svg { width: 28px; height: 28px; }
        .whatsapp-tooltip { display: none; } /* Tooltip auf Handys ausblenden */
    }
	.termin-wrapper {
        max-width: 1050px; margin: 60px auto 100px auto; display: flex; flex-wrap: wrap;
        background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden;
    }
    
    /* Linke Seite */
    .termin-info {
        flex: 1; min-width: 350px; background-color: #1e293b; color: white; padding: 50px; font-family: 'Open Sans', sans-serif;
    }
    .termin-info h2 { font-family: 'Montserrat', sans-serif; font-size: 1.8em; margin-bottom: 20px; font-weight: 800; color: #ffffff; border-bottom: 2px solid #ffffff; padding-bottom: 15px; display: inline-block; }
    .termin-info p { color: #94a3b8; line-height: 1.7; margin-bottom: 40px; font-size: 1em; }
    
    .hours-box { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #22c55e; }
    .hours-box strong { display: block; color: #4ade80; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
    .hours-row { display: flex; justify-content: space-between; margin-bottom: 8px; color: #cbd5e1; font-size: 0.95em; }

    /* Rechte Seite */
    .termin-form-container { flex: 1.5; min-width: 400px; padding: 50px; font-family: 'Open Sans', sans-serif; }
    .termin-form-container h2 { font-family: 'Montserrat', sans-serif; font-size: 2em; color: #1e293b; margin-bottom: 30px; font-weight: 800; border-bottom: 1px solid #e2e8f0; padding-bottom: 15px; }
    
    .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
    .form-group { flex: 1; }
    .form-group label { display: block; margin-bottom: 8px; color: #334155; font-weight: 600; font-size: 0.9em; }
    
    .form-group input, .form-group select, .form-group textarea {
        width: 100%; padding: 14px 16px; border: 1px solid #e2e8f0; border-radius: 8px; 
        font-family: 'Open Sans', sans-serif; font-size: 0.95em; background-color: #f8fafc; color: #1e293b; transition: 0.2s; box-sizing: border-box;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #22c55e; background-color: #ffffff; }
    
    .submit-btn {
        background-color: #22c55e; color: white; border: none; padding: 16px; font-size: 1.05em; 
        font-family: 'Montserrat', sans-serif; font-weight: 700; border-radius: 8px; cursor: pointer; transition: 0.2s; width: 100%; margin-top: 10px;
    }
    .submit-btn:hover { background-color: #16a34a; }
    
    .alert-success { background-color: #dcfce7; color: #166534; padding: 15px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #22c55e; }
    .alert-error { background-color: #fee2e2; color: #991b1b; padding: 15px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #ef4444; }
	 /* Hero Bereich */
    .about-hero {
        background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
        color: white;
        text-align: center;
        padding: 100px 20px;
    }
    .about-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3em; font-weight: 800; margin-bottom: 20px; }
    .about-hero p { font-size: 1.2em; max-width: 700px; margin: 0 auto; color: #cbd5e1; line-height: 1.6; }

    /* Content Bereich */
    .about-container {
        max-width: 1100px;
        margin: -50px auto 100px auto;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        padding: 0 20px;
    }

    /* Linke Seite: Text */
    .about-text {
        flex: 1;
        min-width: 300px;
        background: white;
        padding: 50px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .about-text h2 { font-family: 'Montserrat', sans-serif; color: #1e293b; font-size: 2em; margin-top: 0; margin-bottom: 20px; border-bottom: 3px solid #22c55e; display: inline-block; padding-bottom: 10px; }
    .about-text p { color: #475569; line-height: 1.8; margin-bottom: 20px; font-size: 1.05em; }
    
    .check-list { list-style: none; padding: 0; margin-top: 30px; }
    .check-list li { position: relative; padding-left: 35px; margin-bottom: 15px; color: #334155; font-weight: 600; }
    .check-list li::before { content: '✓'; position: absolute; left: 0; top: -2px; color: #22c55e; font-size: 1.2em; font-weight: bold; }

    /* Rechte Seite: Team/Bild */
    .about-image {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .about-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        object-fit: cover;
    }
    .team-box {
        background: #1e293b;
        color: white;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
    }
    .team-box h3 { font-family: 'Montserrat', sans-serif; margin: 0 0 10px 0; color: #4ade80; font-size: 1.5em; }
    .team-box p { margin: 0; color: #94a3b8; }

    /* CTA Bereich */
    .about-cta { text-align: center; margin-top: 40px; }
    .about-cta a {
        display: inline-block; background-color: #22c55e; color: white; text-decoration: none;
        padding: 15px 35px; font-family: 'Montserrat', sans-serif; font-weight: bold; font-size: 1.1em;
        border-radius: 8px; transition: 0.3s;
    }
    .about-cta a:hover { background-color: #16a34a; transform: translateY(-3px); }
	    .premium-post-container {
        background-color: #ffffff;
        max-width: 800px; /* Schmaler lesen sich lange Texte viel besser! */
        margin: 60px auto 80px auto; /* Schön zentriert mit viel Platz nach oben/unten */
        padding: 60px 80px; /* Viel innerer Abstand (Whitespace) */
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.04); /* Sehr weicher, weiter Schatten */
        border: 1px solid rgba(0,0,0,0.02);
    }
    
    /* Responsive für Handys: Weniger Padding */
    @media (max-width: 768px) {
        .premium-post-container {
            padding: 30px 20px;
            margin: 30px 15px;
        }
    }

    .post-category {
        display: inline-block;
        background-color: #e8f4f8;
        color: #007bb5;
        padding: 6px 14px;
        border-radius: 20px;
        font-family: 'Open Sans', sans-serif;
        font-size: 0.8em;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .premium-post-title {
        font-family: 'Merriweather', serif; /* Elegante Serifenschrift für den Titel */
        font-size: 2.6em;
        color: #1a1a1a;
        margin: 0 0 20px 0;
        font-weight: 700;
        line-height: 1.3;
    }

    .premium-post-meta {
        font-family: 'Open Sans', sans-serif;
        color: #888;
        font-size: 0.95em;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .meta-avatar {
        width: 40px;
        height: 40px;
        background-color: #2c3e50;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    /* Der eigentliche Text */
    .premium-post-content {
        font-family: 'Open Sans', sans-serif; /* Saubere, moderne Leseschrift */
        line-height: 1.9;
        font-size: 1.15em;
        color: #4a4a4a;
    }
    
    /* Bilder im Beitrag wie in einem Magazin */
    .premium-post-content img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 10px;
        margin: 40px 0;
        display: block;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    /* Überschriften im Text */
    .premium-post-content h1, 
    .premium-post-content h2, 
    .premium-post-content h3 {
        font-family: 'Merriweather', serif;
        color: #1a1a1a;
        margin-top: 50px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    /* Links im Text */
    .premium-post-content a {
        color: #007bb5;
        text-decoration: none;
        border-bottom: 1px solid #007bb5;
        transition: all 0.2s ease;
    }
    .premium-post-content a:hover {
        background-color: #e8f4f8;
    }

    .back-link {
        display: inline-block;
        margin-top: 50px;
        font-family: 'Open Sans', sans-serif;
        color: #666;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }
    .back-link:hover {
        color: #1a1a1a;
    }
	 .contact-wrapper {
        max-width: 1000px; 
        margin: 60px auto 100px auto; 
        display: flex; 
        flex-wrap: wrap;
        background: #fff; 
        border-radius: 12px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
        overflow: hidden;
    }
    
    .contact-info {
        flex: 1; 
        min-width: 350px; 
        background-color: #1e293b; 
        color: white; 
        padding: 50px; 
        font-family: 'Open Sans', sans-serif;
    }
    
    .contact-info h2 { 
        font-family: 'Montserrat', sans-serif; 
        font-size: 1.8em; 
        margin-bottom: 20px; 
        font-weight: 800; 
        color: #ffffff; 
        border-bottom: 2px solid #ffffff; 
        padding-bottom: 15px;
        display: inline-block;
    }
    
    .contact-info p { 
        color: #94a3b8; 
        line-height: 1.7; 
        margin-bottom: 40px; 
        font-size: 1em;
    }
    
    .info-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
    
    .info-icon { 
        margin-right: 20px; 
        background-color: #166534; 
        padding: 10px;
        border-radius: 8px; 
        color: #4ade80; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .info-icon svg { width: 20px; height: 20px; }

    .info-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 5px; color: #ffffff; font-size: 1.1em; }
    .info-text span { color: #cbd5e1; font-size: 0.95em; line-height: 1.5; display: block; }

    .contact-form-container { 
        flex: 1.2; 
        min-width: 400px; 
        padding: 50px; 
        font-family: 'Open Sans', sans-serif; 
    }
    
    .contact-form-container h2 { 
        font-family: 'Montserrat', sans-serif; 
        font-size: 2em; 
        color: #1e293b; 
        margin-bottom: 30px; 
        font-weight: 800; 
        border-bottom: 1px solid #e2e8f0; 
        padding-bottom: 15px;
    }
    
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; margin-bottom: 8px; color: #334155; font-weight: 600; font-size: 0.9em; }
    
    .form-group input, .form-group textarea {
        width: 100%; 
        padding: 14px 16px; 
        border: 1px solid #e2e8f0; 
        border-radius: 8px; 
        font-family: 'Open Sans', sans-serif; 
        font-size: 0.95em; 
        background-color: #f8fafc; 
        color: #1e293b;
        transition: border-color 0.2s;
    }
    
    .form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
    .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #22c55e; background-color: #ffffff; }
    
    .submit-btn {
        background-color: #4CAF50; 
        color: white; 
        border: none; 
        padding: 16px;
        font-size: 1.05em; 
        font-family: 'Montserrat', sans-serif; 
        font-weight: 700;
        border-radius: 8px; 
        cursor: pointer; 
        transition: background-color 0.2s; 
        width: 100%; 
        margin-top: 10px;
        text-decoration:none;
    }
    
    .submit-btn:hover { background-color: #16a34a; }
    
    .checkbox-group { margin-bottom: 25px; font-size: 0.9em; color: #64748b; display: flex; align-items: flex-start; gap: 10px; }
    .checkbox-group input { margin-top: 4px; }
	/* =========================================
   DIENSTLEISTUNGEN SEITE
   ========================================= */

/* Hero Bereich */
.page-hero {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}
.page-hero h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    color: #4CAF50;
}
.page-hero p {
    font-size: 1.2em;
    margin: 0;
    color: #ecf0f1;
}

/* Grid Layout für die Kacheln */
.services-section {
    padding: 20px 0;
}
.services-grid {
    display: grid;
    /* Macht das Grid responsive: Mindestens 300px breit, sonst nebeneinander */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Einzelne Kachel */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #4CAF50;
}
.service-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.service-card h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
}
.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.service-card-top h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;

}
.service-card-top p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.service-card-top img {
    margin: 0;    
    border:none;
    width: 100%;
    height: auto;
    object-fit: cover; /* Sorgt dafür, dass das Bild nicht verzerrt wird */
    border-radius: 5px; /* Optional: Macht die Ecken leicht rund, sieht oft edler aus */
}


/* Call to Action unten */
.services-cta {
    text-align: center;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.services-cta h2 {
    border: none;
    margin-top: 0;
}
.btn-primary {
    background-color: #4CAF50; 
    color: white; 
    border: none; 
    padding: 16px;
    font-size: 1.05em; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    border-radius: 8px; 
    cursor: pointer; 
    transition: background-color 0.2s; 
    width: 100%; 
    margin-top: 10px;
    text-decoration: none;
    margin-top:10px;
}
.btn-primary:hover {
    background-color: #45a049;
    color: white;
}
/* =========================================
   STARTSEITE (INDEX)
   ========================================= */

/* Hero Bereich */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/hero-bg.jpg') center/cover;
    background-color: #2c3e50; /* Fallback, falls kein Bild da ist */
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 8px;
    margin-bottom: 50px;
    margin-top: 1px;
}
/* --- BUTTONS IM HERO-BEREICH --- */
/* --- BUTTONS IM HERO-BEREICH --- */
.hero-buttons {
    display: flex;
    justify-content: center; /* Zentriert die Buttons in der Mitte */
    align-items: center;
    gap: 20px;               /* 20px Abstand zwischen den Buttons */
    margin-top: 30px;
    flex-wrap: wrap;         /* Auf dem Handy brechen sie sauber um */
}

/* Styling für BEIDE Buttons, damit sie gleich aussehen */
.hero-buttons a {
    display: inline-block !important;
    width: auto !important;       /* Verhindert, dass der grüne Button 100% breit wird */
    min-width: 220px !important;  /* Gibt beiden Buttons eine schöne Mindestbreite */
    padding: 15px 25px !important;
    text-align: center !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    font-size: 1.1em !important;
    font-weight: bold !important;
    box-sizing: border-box !important;
}
.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4CAF50;
}
.hero-content p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}
.hero-buttons a {
    margin: 0 10px;
}
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 11px 24px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
}

/* Features (Warum wir?) */
/* Der Container für die 3 Boxen */
.features-section {
    display: grid;
    /* Erstellt automatisch Spalten. Auf dem Desktop 3 nebeneinander, auf dem Tablet 2, auf dem Handy 1 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Abstand zwischen den Boxen */
    max-width: 1200px;
    margin: 60px auto; /* Zentriert den gesamten Bereich auf der Seite */
    padding: 0 20px;
}

/* Die einzelnen Boxen */
.feature-box {
    background: #f8fafc; /* Sehr helles Grau/Blau, passend zu deinem Design */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Leichter Schatten */
    transition: transform 0.3s ease; /* Für einen coolen Hover-Effekt */
}

/* Hover-Effekt: Box hebt sich leicht an, wenn man mit der Maus drübergeht */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Die Emojis/Icons über dem Text */
.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.feature-box p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.feature-img {
    font-size: 3em;
    margin-bottom: 15px;
}

/* Quick Services */
.quick-services {
    margin-bottom: 60px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.text-center {
    text-align: center;
}
/* =========================================
   ÜBER UNS & KONTAKT
   ========================================= */

/* Über uns Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.about-list {
    list-style: none;
    padding: 0;
}
.about-list li {
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c3e50;
}

/* Kontakt Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}
.contact-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}
.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box; /* Verhindert, dass Felder über den Rand ragen */
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Responsive (Handy) */
@media (max-width: 768px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info h2 {
    color: #2c3e50; /* Dunkelblau/Grau für gute Lesbarkeit */
    margin-bottom: 20px;
}

.contact-info p, 
.contact-info strong {
    color: #333333; /* Dunkelgrau für den normalen Text */
}
/* Styling für die linke Kontakt-Box (ohne <br>) */
.contact-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8em;
    border-bottom: 2px solid #e2e8f0; /* Optional: kleiner Strich unter der Überschrift */
    padding-bottom: 10px;
}

/* =========================================
   Linke Kontakt-Box (Perfektes Layout)
   ========================================= */
.info-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column; /* Zwingt Label und Wert untereinander */
}

.info-label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px; /* Macht einen sauberen Abstand nach unten */
    font-size: 1.1em;
}

.info-value {
    padding-left: 30px; /* Rückt den Text exakt unter das Wort (hinter das Emoji) ein */
}

.info-value span {
    display: block; 
    color: #4a5568;
    line-height: 1.6;
}

.info-value a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 2px;
}

.info-value a:hover {
    color: #388E3C;
    text-decoration: underline;
}
.brand {
    text-align: center; 
    padding: 20px 0;
}
.brand-img {
    display: block;
}
.brand-top {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 5px;
}
//* --- BASIS-STYLING NAVIGATION (PC) --- */
/* ========================================= */
/* --- 1. BASIS-STYLING NAVIGATION (PC) ---  */
/* ========================================= */
nav {
    background-color: #22c55e !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.topnav {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative; /* Wichtig für das Handy-Icon */
}

.topnav a {
    color: white;
    text-decoration: none;
    padding: 0 20px;
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap; /* Kein Umbruch auf dem PC */
}

.topnav a:hover {
    color: #d4ffd5;
}

/* Verstecke das Icon auf dem PC */
.topnav a.icon {
    display: none !important;
}

/* Abstand zur Box darunter */
nav + div, 
nav + main {
    margin-top: 30px !important;
    padding-top: 0 !important;
}

/* ========================================= */
/* --- 2. HANDY-ANSICHT (Ab 768px) ---       */
/* ========================================= */
@media screen and (max-width: 768px) {
    .topnav {
        display: block; /* Hebt das PC-Layout auf */
    }
    
    .topnav.responsive {
        display: flex;
        flex-direction: column; /* Zwingt die Links UNTEREINANDER! */
    }

    .topnav a {
        display: none; /* Normale Links verstecken */
        width: 100%;
        text-align: center;
        padding: 15px 0 !important; /* Mehr Platz zum Antippen */
        white-space: normal !important; /* Erlaubt Umbrüche auf dem Handy */
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .topnav.responsive a {
        display: block; /* Links anzeigen, wenn offen */
    }

    /* Das Icon IMMER anzeigen, oben rechts fixieren */
    .topnav a.icon {
        display: block !important;
        position: absolute !important;
        right: 10px !important;
        top: 5px !important;
        font-size: 28px !important;
        padding: 10px !important;
        border: none !important;
        width: auto !important;
        z-index: 999 !important; 
    }

    /* Platz für das Icon machen, damit der erste Link nicht verdeckt wird */
    .topnav.responsive a:first-child {
        margin-top: 60px !important; 
    }

    /* --- ICON WECHSEL (☰ und ✖) --- */
    .topnav a.icon .icon-close { display: none !important; }
    .topnav a.icon .icon-open { display: inline !important; }

    .topnav.responsive a.icon .icon-open { display: none !important; }
    .topnav.responsive a.icon .icon-close { display: inline !important; }
}
/* ========================================= */
/* --- BEWERBUNGSSEITE ---                   */
/* ========================================= */
.bewerbung-page {
    padding: 40px 20px;
    background-color: #f9fafb; /* Ganz helles Grau für den Hintergrund */
}

.bewerbung-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.bewerbung-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.bewerbung-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #334155;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
}

.file-upload input[type="file"] {
    width: 100%;
    padding: 10px;
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background-color: #22c55e;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #16a34a;
} 
/* ========================================= */
/* --- KUNDENVERTRAG SEITE ---               */
/* ========================================= */
.vertrag-page {
    padding: 40px 20px;
    background-color: #f8fafc;
}

.vertrag-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.vertrag-header h1 {
    color: #1e293b;
    margin-bottom: 10px;
}

.download-box {
    max-width: 600px;
    margin: 0 auto 30px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.btn-download {
    display: inline-block;
    background-color: #3b82f6; /* Blaues Vertrauens-Design für den Download */
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-download:hover {
    background-color: #2563eb;
    color: white;
}

.divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: #cbd5e1;
    z-index: 1;
}

.divider span {
    background: #f8fafc;
    padding: 0 15px;
    color: #64748b;
    font-weight: bold;
    font-size: 0.9em;
    position: relative;
    z-index: 2;
}

.vertrag-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #22c55e; /* Grüner Rand oben für das Formular */
}

.vertrag-container h3 {
    color: #1e293b;
    margin-top: 0;
}

.btn-vertrag {
    background-color: #22c55e;
    font-size: 1.2em; /* Extra groß für gute Lesbarkeit */
}