        :root {
             --primary-color: #c66b3d;     /* warmes Terrakotta / Toskana-Orange */
             --secondary-color: #f5eee6;   /* sehr helles Beige / Offwhite */
             --accent-color: #8c3b2e;      /* dunkler Rotbraun-Ton für Kontraste */
             --text-color: #3b2f2f;        /* warmes Dunkelbraun für Text */
             --light-text: #fff;           /* weiß für Text auf dunklem Grund */
             --footer-bg: #f0e4dc;         /* sanftes, warmes Beige */
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', Arial, sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 20px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        
            .logo {
                flex-direction: column;
                align-items: center;
            }
        
            .logo img {
                width: 150px;   /* kleineres Logo für Mobile */
                height: auto;
                margin: 0 0 10px 0; /* Abstand nach unten statt rechts */
                border-radius: 10%;
            }
        
            .practice-info h1 {
                font-size: 20px; /* kleiner anpassen */
                margin-bottom: 5px;
            }
        
            .practice-info p {
                font-size: 14px;
            }
        
            .contact-header {
                text-align: center;
                margin-top: 15px;
                font-size: 13px;
            }
        }
        
        /* Navigation */
        nav {
            background-color: var(--secondary-color);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
        }
        
        .main-menu {
            list-style: none;
            display: flex;
        }
        
        .main-menu li {
            position: relative;
        }
        
        .main-menu a {
            display: block;
            padding: 15px 20px;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .main-menu a:hover {
            background-color: var(--primary-color);
            color: var(--light-text);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--secondary-color);
            width: 220px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
            z-index: 100;
        }
        
        .main-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu li {
            width: 100%;
        }
        
        .dropdown-menu a {
            padding: 10px 20px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }
        
        /* Hero Section */
        .hero {
            background-color: var(--secondary-color);
            padding: 50px 0;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            margin-bottom: 20px;
            color: var(--accent-color);
            font-size: 32px;
        }
        
        .hero p {
            margin-bottom: 30px;
            font-size: 18px;
        }
        
        .hero-image {
            margin-top: 30px;
            height: 300px;
            background-color: #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
            color: #666;
        }
        
        /* Main Content */
        main {
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--accent-color);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        /* Services Section */
        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }
        
        .service-card {
            width: calc(50% - 20px);
            margin-bottom: 40px;
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .service-card ul {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        .service-card li {
            margin-bottom: 5px;
        }
        
        /* Team Section */
        .team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        
        .team-member {
            width: 200px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .team-photo {
            width: 150px;
            height: 150px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background-color: #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
        }
        
        .team-member h4 {
            margin-bottom: 5px;
            color: var(--accent-color);
        }
        
        .team-member p {
            font-size: 14px;
            font-style: italic;
        }
        
        /* Hours Section */
        .hours {
            background-color: var(--secondary-color);
            padding: 50px 0;
            margin: 50px 0;
        }
        
        .hours-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .hours-table {
            width: 48%;
        }
        
        .hours-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .hours-table th, .hours-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .hours-table th {
            color: var(--accent-color);
        }
        
        .emergency-contacts {
            width: 48%;
            padding: 20px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .emergency-contacts h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .emergency-contacts p {
            margin-bottom: 10px;
        }
        
        .emergency-number {
            font-weight: bold;
            color: #d9534f;
        }
        
        /* Certifications Section */
        .certifications {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .certifications-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .certification-item {
            background-color: var(--secondary-color);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            color: var(--accent-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--footer-bg);
            padding: 30px 0;
            border-top: 1px solid #ddd;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            width: 30%;
        }
        
        .footer-section h3 {
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 15px 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .cookie-content {
            width: 80%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .accept-btn {
            background-color: #4caf50;
            color: white;
        }
        
        .decline-btn {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .settings-btn {
            background-color: white;
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-header {
                text-align: center;
                margin-top: 10px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-container {
                flex-direction: column;
            }
            
            .main-menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            
            .main-menu.active {
                display: flex;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                width: 100%;
                box-shadow: none;
                display: none;
            }
            
            .main-menu li:hover .dropdown-menu {
                display: block;
            }
            
            .service-card {
                width: 100%;
            }
            
            .hours-content {
                flex-direction: column;
            }
            
            .hours-table, .emergency-contacts {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .footer-section {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        .certification-item {
    display: inline-block;
    margin: 6px 10px;
    padding: 8px 16px;
    background-color: #f0f4f8;
    border-radius: 20px; /* bleibt schön rund */
    transition: all 0.3s ease;
    cursor: default;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.certification-item:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
