* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4ffe4;
    color: #333;
    line-height: 1.6;
}

header {
    background: #5C743D;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

nav {
    background: #99CC66;
    text-align: center;
    padding: 15px;
}

nav a {
    text-decoration: none;
    color: #000;
    margin: 0 18px;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
}

nav a:hover {
    background: #7fbf4d;
}

nav a.active {
    background: #5C743D;
    color: white;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

h1, h2 {
    color: #5C743D;
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background: #5C743D;
    color: white;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
}

.button:hover {
    background: #44582c;
}

footer {
    background: #5C743D;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}
/* ===== LEISTUNGEN GALERIE ===== */

.service-gallery {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-caption {
    margin-top: 10px;
    font-weight: bold;
    color: #5C743D;
}