/* Grundlegende Resets */
body, h1, p, a {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif; /* Roboto als primäre Schriftart */
}

/* Layout */
header, main, footer {
    text-align: center;
    padding: 10px;
}

/* Kopfzeile */
header {
    background-color: #313E4F;
    color: white;
}

.logo {
    width: 250px;
    height: auto;
    padding: 20px;
}

/* Hauptteil */
main {
    margin: 2px 0;
    background-image: url('background.jpg'); /* Pfad zum Hintergrundbild anpassen */
    background-size: cover;
    background-position: center;
    color: white; /* Weiß für bessere Sichtbarkeit auf dunklem Hintergrund */
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Zentriert den Inhalt vertikal */
}

.services-heading {
    font-size: 20px; /* Größere Schrift für die Überschrift */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund für bessere Lesbarkeit */
    margin-bottom: 20px;
}

/* Fußzeile */
footer {
    background-color: #313E4F;
    color: white;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

footer a {
    color: #ffcc00; /* Lebendiges Gelb für Links */
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1, footer {
        font-size: 16px;
    }
    .logo {
        width: 120px; /* Kleinere Logogröße auf kleinen Bildschirmen */
    }
}
