body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background: #f5f5f5;
    color: #333;
}

.container {
    width: 75%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;

    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;

    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    background: #fff;
}

/* Für sehr kleine Bildschirme */
@media (max-width: 500px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
}

.layout {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 100vh;
}

.header {
    background: #2f3e46;
    color: white;
    padding: 20px;
    text-align: center;
}

.nav {
    background: #354f52;
    padding: 10px;
    text-align: center;
}

.nav select {
    padding: 8px 12px;
    font-size: 16px;
    border: none;
    background: #cad2c5;
    color: #2f3e46;
    border-radius: 4px;
}

.nav,
.nav-grid {
    width: 75%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.nav-column select {
    width: 100%;
}

.content {
    padding: 20px;
    overflow-y: auto;
}

.footer {
    background: #2f3e46;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

/* FAQ Grundstruktur */
.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #d0d0d0;
    overflow: hidden;
}

.faq-question {
    background: #e0e4e7;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #2f3e46;
}

.faq-question:hover {
    background: #d3d7da;
}

.faq-toggle {
    font-size: 22px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #f7f9fa;
    color: #333;
    line-height: 1.6;
}

.faq-answer.open {
    display: block;
}
.kontaktformular {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: system-ui, sans-serif;
}

.kontaktformular label {
    font-weight: 600;
}

.kontaktformular input,
.kontaktformular select,
.kontaktformular textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    /*width: 100%;*/
    box-sizing: border-box;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px; /* Abstand zwischen Checkbox und Text */
}

.checkbox input[type="checkbox"] {
    margin: 0;
    padding: 0;
}

.checkbox label {
    display: inline-block;
    margin: 0;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.buttons button {
    padding: 10px 18px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.buttons .abbrechen {
    background: #ccc;
}

.buttons .absenden {
    background: #0077cc;
    color: white;
}

