/* Global Styles - Zentriert & Responsive */
* { box-sizing: border-box; }

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0; padding: 0;
    background: #f4f4f4; color: #333;
    line-height: 1.6;
    text-align: center;
}

/* Hero - Perfekt zentriert */
#hero {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 70vh; background: #ffffff;
    color: #333; text-align: center; padding: 20px;
}

.hero-content {
    max-width: 800px; padding: 0 20px;
    display: flex; flex-direction: column;
    align-items: center;
}

.hero-content h1 { font-size: 2.5em; margin: 0 0 10px; }
.hero-content h2 { font-size: 1.8em; margin: 0 0 10px; }
.hero-content p { font-size: 1.2em; margin: 0 0 20px; }

.logo { max-width: 800px; height: auto; margin-bottom: 20px; }

.cta-button {
    background: #ff6b00; color: white;
    padding: 15px 30px; text-decoration: none;
    border-radius: 5px; font-weight: bold; font-size: 1.1em;
    transition: background 0.3s; display: inline-block;
}
.cta-button:hover { background: #e55a00; }
.cta-button.whatsapp-btn {
    background: #25D366 !important; /* WhatsApp Grün */
    margin: 10px auto;
    display: block; /* Zentriert, full-width möglich */
    max-width: 300px;
    text-align: center;
}
.cta-button.whatsapp-btn:hover {
    background: #128C7E !important; /* Dunkleres Grün */
}

/* Navbar */
nav {
    background: #0084BC; display: flex;
    justify-content: center; padding: 10px; flex-wrap: wrap;
}
nav a {
    color: white; text-decoration: none;
    margin: 0 15px; padding: 10px 20px;
    text-transform: uppercase; font-weight: bold;
    border-radius: 5px; transition: background 0.3s;
}
nav a:hover { background: #005f89; }

/* Content & Formulare - Zentriert mit Lesbarkeit */
.content {
    padding: 40px 20px; margin: 20px auto;
    max-width: 1200px; background: white;
    border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}
.content p, .content ul {
    text-align: center; max-width: 800px; margin: 0 auto 20px;
}
h2 { color: #0084BC; }

/* Kontaktformular - Eingearbeitet & gestapelt */
.contact-form {
    max-width: 500px; margin: 20px auto;
    display: flex; flex-direction: column;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%; padding: 12px; margin: 10px 0;
    border-radius: 5px; border: 1px solid #ccc;
    font-family: inherit; box-sizing: border-box;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
    background: #0084BC; color: white; border: none;
    font-weight: bold; cursor: pointer;
}
.contact-form button:hover { background: #005f89; }

/* Services - Einheitliches Grau */
.service-preview {
    display: flex; flex-wrap: wrap; gap: 20px;
    justify-content: center;
}
.service-item {
    flex: 1 1 300px; padding: 30px;
    background: #bdc3c7; /* Mittleres Grau */
    border-radius: 10px; text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
}
.service-item:hover {
    transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* About */
.about-img {
    width: 300px; height: 300px; object-fit: cover;
    border-radius: 5px; display: block; margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer & Cookie */
footer { background: #333; color: white; text-align: center; padding: 20px; }
footer a { color: white; text-decoration: none; }

#cookie-disclaimer, .overlay { /* Deine bestehenden Regeln unverändert */ }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2em; }
    nav { flex-direction: column; }
    .service-preview, .contact-form { flex-direction: column; }
}
