/* Globale Einstellungen */
body {
    font-family: 'Arial', sans-serif; /* Oder eine ähnliche serifenlose Schriftart */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Leichter Off-White Hintergrund */
}

.container {
    max-width: 1200px; /* Oder eine passende Breite */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #004d80; /* Dunkles Blau für die Top-Bar */
    color: #fff;
    padding: 8px 0;
    font-size: 0.9em;
    text-align: center;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 60px; /* Größe des Logos anpassen */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #004d80; /* Passende Hover-Farbe */
}

/* Hero Sektion */
.hero-section {
    background: linear-gradient(rgba(0, 77, 128, 0.8), rgba(0, 77, 128, 0.8)), url('hero-bg.jpg') no-repeat center center/cover; /* Optional: Hero-Hintergrundbild */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #e67e22; /* Akzentfarbe für Buttons */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d35400;
}

/* Allgemeine Sektionen */
.content-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #004d80;
    position: relative;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e67e22;
    margin: 10px auto 0;
}

.bg-light-gray {
    background-color: #f0f0f0; /* Leichter Hintergrund für abwechselnde Sektionen */
}

/* Services Overview Grid */
.services-overview {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.service-item h3 {
    color: #004d80;
    margin-top: 15px;
    font-size: 1.5em;
}

.service-item i { /* Stil für Font Awesome Icons, falls verwendet */
    font-size: 3em;
    color: #e67e22;
    margin-bottom: 15px;
}

/* Kontakt Sektion */
.contact-section address {
    font-style: normal;
    text-align: center;
    margin-top: 30px;
}

.contact-section address p {
    margin-bottom: 10px;
}

.contact-section address a {
    color: #004d80;
    text-decoration: none;
    font-weight: bold;
}

.contact-section address a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px; /* Abstand zum Inhalt */
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design (Basis) */
@media (max-width: 768px) {
    .main-navigation {
        flex-direction: column;
        padding-bottom: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }
}
