/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333333; /* Dezenteres Dunkelgrau für den Text */
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}
header .logo img {
    max-width: 320px;
    height: auto;
}

/* Hero Section */
.hero {
    background-color: #ffcc66; /* Sanftes Gelb statt kräftigem Orange */
    color: #333333;
    text-align: center;
    padding: 80px 20px;
}
.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.cta-button {
    background-color: #004aad;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

/* Services Section */
#services {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
#services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #004aad;
}
.service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service-item {
    background-color: #f4f4f4;
    padding: 30px;
    width: 30%;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.service-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #004aad;
}
.service-item p {
    font-size: 1rem;
}
.service-item ul {
    list-style: none; /* Standardaufzählungspunkte entfernen */
    padding-left: 0;
}

.service-item ul li {
    background-image: url('blitz2.png'); /* Pfad zu deinem Bild */
    background-size: 16px 16px; /* Standardgröße des Icons */
    background-repeat: no-repeat;
    background-position: 0 50%; /* Bild ganz links und vertikal zentrieren */
    padding-left: 25px; /* Platz für das Icon schaffen */
    margin-bottom: 8px; /* Abstand zwischen den Punkten */
    line-height: 1.4; /* Lesbarkeit bei mehrzeiligen Punkten */
}


/* Footer */
footer {
    background-color: #004aad;
    color: white;
    text-align: center;
    padding: 20px;
}
footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Cookie Banner */
#cookie-banner {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
}
#cookie-banner button {
    background-color: #004aad;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        width: 80%;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Kontaktbereich */
#contact {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #004aad;
}
#contact p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
#contact a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}
#contact a:hover {
    text-decoration: underline;
}
