/* Lokale Systemfonts für 100% DSGVO & Performance */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Fix für das Grid-Alignment */
.h-full {
    height: 100%;
}

/* ZPBS DEEP BLUE THEME OVERRIDES */
/* Wir überschreiben die Standard-Klassen für das tiefere Blau */
.bg-blue-900 {
    background-color: #0a192f !important; /* Deep Midnight */
}

.text-blue-600, .text-blue-700 {
    color: #112240 !important;
}

.text-blue-400 {
    color: #60a5fa !important; /* Akzentfarbe etwas heller für Kontrast */
}

.border-blue-500 {
    border-color: #1e3a8a !important;
}

/* Subtiles Hover-Styling */
#leistungen .bg-slate-50, 
#leistungen .bg-blue-900 {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), shadow 0.3s ease;
}

#leistungen .bg-slate-50:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

#leistungen .bg-blue-900:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(10, 25, 47, 0.4); /* Tieferer Schatten */
}

/* Optimierung der Typografie */
.prose h2 {
    color: #0a192f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

img {
    max-width: 100%;
    height: auto;
}