/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Header */
header {
    background: #333;
    color: white;
    padding: 10px 0;
}

header h1 {
    float: left;
}

header nav ul {
    list-style: none;
    float: right;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero-Bereich */
.hero {
    background: #2d2d2d;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.cta-button {
    background: #f5a623;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e49018;
}

/* Leistungen */
#services {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

#services h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.service {
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service p {
    font-size: 1.1em;
}

/* FAQ */
#faq {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

#faq h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

/* Kontakt */
#contact {
    background: #2d2d2d;
    color: white;
    padding: 50px 0;
    text-align: center;
}

#contact form {
    max-width: 400px;
    margin: 0 auto;
}

#contact input,
#contact button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

#contact button {
    background: #f5a623;
    color: white;
    cursor: pointer;
}

#contact button:hover {
    background: #e49018;
}

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