:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #93c5fd;
            --secondary: #4b5563;
            --accent: #dc2626;
            --light: #f3f4f6;
            --lighter: #f9fafb;
            --dark: #1f2937;
            --darker: #111827;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --rating: #f59e0b;
            --premium: #d97706;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --radius-sm: 0.125rem;
            --radius: 0.25rem;
            --radius-md: 0.375rem;
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --radius-full: 9999px;
            --transition: all 0.2s ease-in-out;
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-lg: 1.125rem;
            --text-xl: 1.25rem;
            --text-2xl: 1.5rem;
            --text-3xl: 1.875rem;
            --text-4xl: 2.25rem;
            --text-5xl: 3rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: transparent;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.5;
            color: var(--secondary);
            background-color: var(--lighter);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--darker);
            line-height: 1.3;
            margin-bottom: 0.75rem;
        }
        
        h1 {
            font-size: var(--text-3xl);
        }
        
        h2 {
            font-size: var(--text-2xl);
        }
        
        h3 {
            font-size: var(--text-xl);
        }
        
        p {
            margin-bottom: 1rem;
            font-size: var(--text-base);
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        
        .logo {
            font-size: var(--text-2xl);
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--secondary);
            font-size: var(--text-2xl);
            cursor: pointer;
            padding: 0.5rem;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }
        
        nav a {
            color: var(--secondary);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav a:hover {
            color: var(--primary);
            text-decoration: none;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: var(--radius-md);
            font-weight: 600;
        }
        
        .nav-cta:hover {
            background-color: var(--primary-dark);
            color: white;
            text-decoration: none;
        }
        
        .nav-cta::after {
            display: none;
        }
        
        /* Main Content */
        main {
            padding: 2rem 0 3rem;
        }
        
        /* Service Header */
        .service-header {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .service-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--primary);
        }
        
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: var(--text-sm);
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        .breadcrumbs a {
            color: var(--secondary);
        }
        
        .breadcrumbs a:hover {
            color: var(--primary);
        }
        
        .breadcrumbs span {
            color: var(--dark);
        }
        
        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            background-color: var(--light);
            color: var(--dark);
            padding: 0.375rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .location-badge svg {
            fill: var(--primary);
        }
        
        .lead {
            font-size: var(--text-lg);
            color: var(--secondary);
            max-width: 800px;
        }
        
        /* Section Styles */
        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .section-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-light);
            border-radius: var(--radius-full);
            color: var(--primary);
        }
        
        .section-icon svg {
            width: 20px;
            height: 20px;
        }
        
        /* Service Description */
        .service-description {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .stat-item {
            background-color: var(--lighter);
            border-radius: var(--radius);
            padding: 1rem;
            text-align: center;
        }
        
        .stat-number {
            font-size: var(--text-2xl);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            font-size: var(--text-sm);
            color: var(--secondary);
        }
        
        /* Sort Options */
        .sort-options {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            scrollbar-width: none;
        }
        
        .sort-options::-webkit-scrollbar {
            display: none;
        }
        
        .sort-btn {
            background-color: var(--light);
            color: var(--secondary);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: var(--transition);
        }
        
        .sort-btn.active {
            background-color: var(--primary);
            color: white;
        }
        
        /* Provider List */
        .provider-list-section {
            margin-bottom: 2rem;
        }
        
        .provider-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .provider-card {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .provider-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        
        .premium-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--premium);
            color: white;
            padding: 0.25rem 1rem;
            font-size: var(--text-xs);
            font-weight: 600;
            border-bottom-left-radius: var(--radius);
            transform: translateY(-100%) rotate(90deg) translateX(50%);
            transform-origin: bottom right;
        }
        
        .provider-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .provider-name {
            font-size: var(--text-xl);
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .provider-rating {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background-color: var(--rating);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 600;
        }
        
        .provider-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: var(--text-sm);
        }
        
        .meta-item svg {
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            fill: var(--secondary);
        }
        
        .provider-contact {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--light);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: var(--text-sm);
        }
        
        .contact-item svg {
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            fill: var(--primary);
        }
        
        .contact-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
        }
        
        .action-buttons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 500;
            font-size: var(--text-sm);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-outline {
            background-color: transparent;
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-light);
        }
        
        /* No Providers */
        .no-providers {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 2rem;
            text-align: center;
            grid-column: 1 / -1;
        }
        
        /* Register Provider */
        .register-provider {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }
        
        .register-btn {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            margin-top: 1rem;
            display: inline-block;
            transition: var(--transition);
        }
        
        .register-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .pricing-info {
            margin-top: 1rem;
            font-size: var(--text-sm);
            color: var(--secondary);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .faq-accordion {
            display: grid;
            gap: 1rem;
        }
        
        .faq-item {
            border: 1px solid var(--light);
            border-radius: var(--radius);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            background-color: var(--lighter);
            padding: 1rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: var(--light);
        }
        
        .faq-icon {
            transition: transform 0.2s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 1rem;
            max-height: 500px;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow-y: auto;
            padding: 1rem;
        }
        
        .modal-content {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            max-width: 600px;
            margin: 2rem auto;
            animation: modalFadeIn 0.3s ease;
            position: relative;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            padding: 1.5rem 1.5rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: var(--text-2xl);
            color: var(--secondary);
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .modal-body {
            padding: 0 1.5rem 1.5rem;
			overflow: auto;
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 1.25rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--light);
            border-radius: var(--radius);
            font-size: var(--text-base);
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker);
            color: white;
            padding: 3rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: var(--text-xl);
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-about {
            max-width: 300px;
        }
        
        .footer-title {
            font-size: var(--text-lg);
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: var(--light);
        }
        
        .footer-links a:hover {
            color: white;
            text-decoration: none;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: var(--text-sm);
            color: var(--light);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 55px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: var(--shadow-md);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            .header-container {
                padding: 0 1rem;
            }
            
            .service-header {
                padding: 1.5rem;
            }
            
            h1 {
                font-size: var(--text-2xl);
            }
            
            h2 {
                font-size: var(--text-xl);
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .provider-meta {
                grid-template-columns: 1fr;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }
        
        @media (min-width: 640px) {
            .provider-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .provider-list {
                grid-template-columns: repeat(3, 1fr);
            }
            
            h1 {
                font-size: var(--text-4xl);
            }
        }
.error-message {
    color: var(--error, #dc3545);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}
.form-control:invalid,
.form-control.error {
    border-color: var(--error, #dc3545);
}
.form-label::after {
    color: var(--error, #dc3545);
    margin-left: 0.25rem;
}
.form-group:not(:has([required])) .form-label::after {
    content: none;
}
.btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.page-link {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #2563eb;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #f1f5ff;
    border-color: #2563eb;
}

.page-link.active {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}
/* Modern Modal Header */
.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.provider-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: #2563eb;
}

.provider-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.3;
}
/* Modern Modal Header */
.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.provider-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: #2563eb;
}

.provider-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-type {
    background: #e0e7ff;
    color: #2563eb;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    color: #f59e0b;
    font-weight: 500;
    font-size: 0.875rem;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-right: 4px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.875rem;
}

.pin-icon {
    width: 16px;
    height: 16px;
    fill: #64748b;
}

/* Desktop Karten-Styling */
.map-container {
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Content */
.modal-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .provider-header {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .provider-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .business-icon {
        width: 20px;
        height: 20px;
    }
    
    .provider-name {
        font-size: 1.25rem;
    }
    
    .service-info {
        gap: 8px;
        margin-top: 4px;
    }
    
    /* Mobile Karten-Container mit fester Breite */
    #reviewsMapContainer {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        background: #f1f5f9;
    }
    
    .map-container {
        width: 455px;
        min-width: 455px;
        height: 400px;
        margin: 0 auto;
    }
    
    .map-container iframe {
        width: 455px !important;
        height: 400px !important;
        min-width: 455px;
    }
    
    /* Scrollbar Styling */
    #reviewsMapContainer::-webkit-scrollbar {
        height: 4px;
    }
    
    #reviewsMapContainer::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 2px;
    }
    
    /* Modal Anpassungen */
    #reviewsModal {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 0 auto;
        border: 8px solid white;
    }
}

/* Optimierungen für sehr kleine Displays */
@media (max-width: 480px) {
    .provider-header {
        padding: 12px;
    }
    
    .provider-name {
        font-size: 1.1rem;
    }
    
    .service-type, 
    .rating-badge {
        font-size: 0.8rem;
    }
    
    .location-info {
        font-size: 0.8rem;
    }
    
    .business-icon {
        width: 18px;
        height: 18px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}
/* About Modal Styles */
.about-modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.about-content-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem;
}

.about-content {
    padding: 1.5rem 0;
    line-height: 1.6;
    color: #374151;
}

.about-content p {
    margin-bottom: 1rem;
    white-space: pre-line; /* Behält Zeilenumbrüche bei */
}