/* Grundstyles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    color: #2E7D32;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
}

/* Heldenteil */
.hero {
    background-color: #81C784;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Abschnitte */
section {
    padding: 60px 0;
}

section h2 {
    color: #2E7D32;
    margin-bottom: 20px;
    text-align: center;
}

/* Leistungen */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 250px;
    text-align: center;
}

/* Referenzen */
.reference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.reference {
    background: #F1F8E9;
    border: 1px solid #C5E1A5;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 250px;
    text-align: center;
}

/* Kontakt */
#contact p {
    text-align: center;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #2E7D32;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: white;
    margin: 0 10px;
}
