/* Einheitliches Design für alle Seiten */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 10px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 30px;
    overflow: hidden;
}

/* Navigation */
.nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    margin: -30px -30px 30px -30px;
    border-radius: 15px 15px 0 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-size: clamp(1.8em, 4vw, 2.5em);
    font-weight: 700;
}

.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: clamp(0.95em, 2vw, 1.1em);
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.info-box strong {
    color: #2c3e50;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
    display: block;
}

thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

th {
    font-weight: 600;
    font-size: 0.95em;
}

tbody {
    display: table;
    width: 100%;
}

tr {
    display: table-row;
}

tr:hover {
    background-color: #f5f5f5;
}

.service-name {
    font-weight: 600;
    color: #2c3e50;
}

.price {
    font-weight: 700;
    color: #667eea;
    font-size: 1.05em;
}

.section-title {
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-size: clamp(1.4em, 3vw, 1.8em);
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: clamp(1.5em, 3vw, 2em);
    margin-bottom: 10px;
}

/* Bundesländer Navigation */
.bundeslaender-nav {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.bundeslaender-nav h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.bundeslaender-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.bundesland-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    font-weight: 500;
    display: block;
}

.bundesland-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Firmenliste */
.firmen-section {
    margin-top: 40px;
}

.firma-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.firma-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.firma-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.firma-details {
    color: #7f8c8d;
    font-size: 0.95em;
    line-height: 1.8;
}

.firma-details strong {
    color: #2c3e50;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    table {
        font-size: 0.85em;
    }

    th, td {
        padding: 8px 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bundeslaender-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .bundeslaender-grid {
        grid-template-columns: 1fr;
    }
}

