* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
html, body {
    background: #fff;
    color: #000;
    overflow-x: hidden;
    min-height: 100vh;
}
.about-us {
    margin: 70px auto 0;
    padding: 20px;
    max-width: 900px;
    color: #000;
}

.hero-section {
    text-align: center;
    margin-bottom: 30px;
}
.hero-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}
.hero-text {
    font-size: 1rem;
    color: #444;
}

.content-block {
    margin-bottom: 30px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 0px;
    text-align: left; /*center auch möglich!*/
}
.content-block h2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.content-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 70px;
    background: #000; /* Schwarz */
    border-bottom: 1px solid #333; 
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 20px; 
    z-index: 1000;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff; 
}
.header-center {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brug-logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.logo-slot {
    width: 120px;
    height: 80px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s;
}
.logo-slot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.logo-slot:hover {
    transform: scale(1.05);
}

.main-footer {
    background: #f5f5f5;
    border-top: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    color: #000;
    margin-top: 40px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.8rem;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-note {
    font-size: 0.75rem;
    color: #444;
}

.contact-section {
    margin: 70px auto;
    padding: 20px;
    max-width: 900px;
    color: #000;
    min-height: calc(100vh - 219.5px);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Einheitlicher Abstand zwischen allen Feldern */
    margin-top: 20px;
}
.contact-form label {
    font-size: 1rem;
    font-weight: bold;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form textarea {
    resize: none; /* Entfernt die Möglichkeit, die Größe zu ändern */
}

/* Vorname und Nachname nebeneinander */
.name-fields {
    display: flex;
    gap: 20px; /* Gleicher Abstand zwischen den Feldern */
}
.name-fields .field {
    flex: 1; /* Beide Felder gleich breit */
}

/* Medienabfrage für kleine Bildschirme */
@media (max-width: 768px) {
    .name-fields {
        flex-direction: column; /* Stapelt die Felder untereinander */
    }
}

/* Absende-Button */
.contact-form .submit-button {
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form .submit-button:hover {
    background: #444;
}