* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f7fa;
            color: #1a2c3e;
            line-height: 1.5;
        }

        /* HEADER - 100% Breite, clean, weiß */
        .site-header {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #eef2f8;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.75rem 2rem;
            text-align: center;
        }

        .site-header h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: #1a2c3e;
        }

        .site-header h1 i {
            color: #0081ce;
            margin-right: 8px;
        }

        .site-header p {
            font-size: 1rem;
            color: #5a6e7c;
            margin-top: 0.4rem;
        }

        .badge-stadt {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f0f4f9;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 500;
            color: #2c5a74;
            margin-top: 0.8rem;
        }

        /* Hauptcontainer */
        .main-container {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* Kachel-Grid - modernes 3-Spalten-Layout */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        /* KACHEL - leicht, feiner Schatten, dezenter Hover */
        .card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #eef2f8;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
            border-color: #e2e8f0;
        }

        /* Logo-Bereich - vorbereitet für PNG/JPG */
        .logo-wrapper {
            background: #fafcff;
            padding: 2rem 1.5rem;
            text-align: center;
            border-bottom: 1px solid #f0f4fa;
            min-height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .school-logo {
            max-width: 130px;
            max-height: 90px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .logo-placeholder-icon {
            font-size: 3.5rem;
            color: #94a3b8;
            background: #f1f5f9;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* Inhalt */
        .card-content {
            padding: 1.5rem 1.5rem 1.8rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .school-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a2c3e;
            letter-spacing: -0.2px;
        }

        .school-type {
            display: inline-block;
            background: #f0f4f9;
            padding: 0.2rem 0.9rem;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #5a6e7c;
            width: fit-content;
            border-radius: 30px;
        }

        .info-row {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.85rem;
            color: #3a5a6e;
            flex-wrap: wrap;
        }

        .info-row i {
            width: 1.3rem;
            font-size: 0.9rem;
            text-align: center;
            color: #00901f;
        }

        .info-row a {
            color: #0081ce;
            text-decoration: none;
            font-weight: 500;
        }

        .info-row a:hover {
            color: #00901f;
            text-decoration: underline;
        }

        .opening-hours {
            background: #f8fafd;
            padding: 0.6rem 1rem;
            border-radius: 12px;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            flex-wrap: wrap;
            border: 1px solid #eef2f8;
            margin-top: 0.2rem;
        }

        .website-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            padding: 0;
            font-size: 0.85rem;
            font-weight: 600;
            color: #0081ce;
            transition: all 0.2s;
        }

        .website-btn:hover {
            color: #00901f;
            transform: translateX(2px);
        }

        /* FOOTER - 100% Breite */
        .site-footer {
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #eef2f8;
            padding: 2rem 2rem 1.8rem;
            margin-top: 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .footer-links a {
            text-decoration: none;
            color: #5a6e7c;
            font-weight: 500;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #00901f;
        }

        .copyright {
            font-size: 0.75rem;
            color: #8ba0ae;
        }

        /* MODAL - für Datenschutz und Impressum */
/* MODAL - für Datenschutz und Impressum */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal:target {
    display: flex;
}

.modal-content {
    background: #ffffff;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
}

/* Scrollbar-Styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c9d2;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a0aab5;
}

/* Für Firefox */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: #c1c9d2 #f1f1f1;
}

.close-modal {
    position: sticky;
    top: 0;
    float: right;
    background: #f0f4f9;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #5a6e7c;
    font-weight: bold;
    font-size: 1.4rem;
    transition: all 0.2s;
    margin: 0 0 1rem 1rem;
    z-index: 10;
    cursor: pointer;
    border: none;
}

.close-modal:hover {
    background: #e2e8f0;
    color: #1a2c3e;
    transform: scale(1.05);
}

/* Sicherstellen, dass der Inhalt nicht abschneidet */
.modal-content h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    clear: both;
}

.modal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: #1a2c3e;
}

.modal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.2rem 0 0.5rem 0;
    color: #2c5a74;
}

.modal-content p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #3a5a6e;
}

.modal-content ul, .modal-content ol {
    margin: 0.5rem 0 1rem 1.5rem;
    color: #3a5a6e;
}

.modal-content li {
    margin: 0.3rem 0;
    line-height: 1.6;
}

.modal-content hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #eef2f8;
}

.modal-content strong {
    color: #1a2c3e;
}

.modal-content .datenschutz-title {
    color: #00901f;
    border-left: 3px solid #00901f;
    padding-left: 12px;
}

.modal-content .impressum-title {
    color: #0081ce;
    border-left: 3px solid #0081ce;
    padding-left: 12px;
}

.dsgvo-highlight {
    background: #f8fafd;
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid #0081ce;
    margin: 1rem 0;
}

/* IMPRESSUM - spezifische Formatierungen */
.impressum-contact {
    background: #f8fafd;
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1rem 0;
    border-left: 3px solid #0081ce;
}

.impressum-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.impressum-contact i {
    width: 1.5rem;
    color: #0081ce;
    font-size: 1rem;
}

.impressum-contact a {
    color: #0081ce;
    text-decoration: none;
}

.impressum-contact a:hover {
    color: #00901f;
    text-decoration: underline;
}

.impressum-info {
    margin: 1.2rem 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #eef2f8;
    border-radius: 12px;
}

.impressum-info strong {
    color: #1a2c3e;
    display: inline-block;
    min-width: 140px;
}

.impressum-info p {
    margin: 0.5rem 0;
}

.haftungsausschluss {
    background: #fef8e7;
    border-left: 3px solid #CF7600;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 12px;
}

.haftungsausschluss p {
    margin: 0;
    color: #5a4a1a;
    font-size: 0.85rem;
}

/* Linie für visuelle Trennung */
.impressum-divider {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #eef2f8;
}

/* ANDERE TRÄGER - optisch abgesetzter Bereich */
.other-trasseger-section {
    max-width: 1400px;
    margin: 4rem auto 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f2f7 100%);
    border-radius: 32px;
    position: relative;
    box-shadow: inset 0 1px 4px rgba(255,255,255,0.9), 0 4px 12px rgba(0,0,0,0.05);
}

/* Dekorativer Akzentstreifen oben */
.other-trasseger-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: linear-gradient(90deg, #00901f, #0081ce, #CF7600, #CA00CF);
    border-radius: 4px 4px 0 0;
}

/* Bereichs-Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-icon {
    font-size: 2.5rem;
    color: #0081ce;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2c3e;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 0.95rem;
    color: #5a6e7c;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid für andere Träger - gleiches Layout, aber minimaler Abweichung */
.other-trasseger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.8rem;
}

/* Kacheln für andere Träger - dezenter Farbakzent */
.other-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef2f8;
    position: relative;
}

/* Leichter linker Rahmen in anderer Farbe */
.other-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #CF7600, #CA00CF);
    border-radius: 20px 0 0 20px;
}

.other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: #dce5ec;
}

/* Type-Badge für andere Träger */
.other-type {
    background: #fef3e0;
    color: #CF7600;
    border-left: 3px solid #CF7600;
    padding-left: 10px;
}

/* Responsive Anpassungen für den Bereich */
@media (max-width: 800px) {
    .other-trasseger-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .other-trasseger-grid {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .other-trasseger-section {
        margin: 2rem 0.5rem;
        padding: 1.2rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .impressum-info strong {
        display: block;
        min-width: auto;
        margin-bottom: 0.25rem;
    }
    
    .impressum-contact p {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

        @media (max-width: 800px) {
            .main-container { padding: 0 1rem; margin: 2rem auto; }
            .grid { gap: 1rem; }
            .site-header h1 { font-size: 1.4rem; }
            .header-content { padding: 1.2rem; }
            .modal-content { padding: 1.5rem; }
            .modal-content h2 { font-size: 1.3rem; }
        }