/* 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: 
   Sorgt dafür, dass Flex-Boxen innerhalb des Grids 
   wirklich die volle verfügbare Höhe nutzen */
.h-full {
    height: 100%;
}

/* Subtiles Hover-Styling für die Leistungs-Boxen */
#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; /* slate-200 */
}

#leistungen .bg-blue-900:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.2);
}

/* Optimierung der Typografie für die Rechtstexte (Impressum/Datenschutz) */
.prose h2 {
    color: #1e3a8a; /* blue-900 */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

/* Logo-Schutz gegen Verzerrung */
img {
    max-width: 100%;
    height: auto;
}