        /* Globale Stile und Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        html, body {
            color: #131313;
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-y: scroll;
            scroll-snap-type: y proximity;
            height: 100vh;
        }

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

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            width: 100%;
        }

        .logo {
            font-weight: bold;
            font-size: 20px;
            color: #2A403D;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #131313;
        }
        .nav-close {
            display: none;
        }  

        /* Mobile Navigation Menu */
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero-Sektion und Nav kombiniert */
        .hero-section {
            min-height: 100vh;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
        }

        /* Hero-Bereich */
        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 60px 0;
            flex-grow: 1;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            padding-right: 40px;
            min-width: 300px;
        }

        .hero-subtitle {
            color: #e74c3c;
            margin-bottom: 10px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: #2A403D;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            min-width: 300px;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 30px;
            width: 75%;
        }

        /* Info-Bereich */
        .info-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #2A403D;
            color: white;
            padding: 80px 0;
            scroll-snap-align: start;
        }

        .info-title {
            font-size: 36px;
            margin-bottom: 20px;
            max-width: 800px;
        }

        .info-text {
            font-size: 16px;
            margin-bottom: 30px;
            max-width: 600px;
            color: #e6e6e6;
        }

        .bold-text {
            font-weight: 700;
        }

        /* Feature-Karten */
        .features {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .feature-card {
            flex-basis: 30%;
            margin-bottom: 30px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .emoji {
            margin-right: 10px;
            font-size: 20px;
        }

        .feature-description {
            font-size: 14px;
            color: #e6e6e6;
        }

        /* Leistungen */
        .services-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            scroll-snap-align: start;
            background-color: white;
        }
        
        .services-title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .services-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .service-card {
            flex-basis: 48%;
            margin-bottom: 30px;
        }

        .service-title {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .service-description {
            font-size: 16px;
            color: #555;
        }
        

        /* Termin-Button */
        .appointment-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        .appointment-button {
            background-color: #e74c3c;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            display: inline-flex;
            align-items: center;
        }
        /* Testimonials */

        .testimonials-section {
            min-height: 100vh;
            scroll-snap-align: start;
            justify-content: center;
            padding: 4rem 2rem;
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .testimonials-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .testimonials-grid {
            
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .testimonial iframe {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .testimonials-title
        {
            font-size: 36px;
            margin-bottom: 40px;
        }
        /* Datenschutz-Seite */
.datenschutz-section {
    min-height: 100vh;
    padding: 80px 0;
    scroll-snap-align: start;
    background-color: #ffffff;
    color: #131313;
}

.datenschutz-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.datenschutz-section h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.datenschutz-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
}
        /* Footer */
        footer {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            scroll-snap-align: start;
        }

        .footer-links a {
            margin-right: 20px;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 14px;
        }

        /* Responsive Design - Medium Screens (Tablets) */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 48px;
            }
            
            .feature-card {
                flex-basis: 45%;
            }
        }

        /* Responsive Design - Small Screens (Mobile) */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 30px 0;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
                order: 2;
            }
            
            .hero-image {
                order: 1;
                justify-content: center;
                margin-bottom: 30px;
            }
            
            .hero-image img {
                width: 90%;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .feature-card, .service-card {
                flex-basis: 100%;
            }
            
            .info-title {
                font-size: 28px;
            }
            
            /* Hamburger Menu for Mobile */
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #fff;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.3s ease;
                z-index: 1000;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .nav-close {
                display: block;
                position: absolute;
                top: 0px;
                right: 32px;
                font-size: 24px;
                cursor: pointer;
            }
        }
        
        /* Sehr kleine Screens (Small Phones) */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
            }
            
            .cta-button {
                padding: 12px 30px;
            }
            
            .info-title {
                font-size: 24px;
            }
            
            .services-title {
                font-size: 28px;
            }
        }
