* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
html, body {
    background: #fff;
    color: #000;
    overflow-x: hidden;
}
.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;
}
.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;
}
.team-section {
    margin-top: 40px;
    text-align: center;
}
.team-grid {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.team-member {
    text-align: center;
    width: 200px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
}
.team-photo {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}
.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;
}

.customer-section {
    margin-top: 40px;
    text-align: center;
}

.customer-section h2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.customer-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #444;
}

.customer-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.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;
}
ol, ul {
    margin-left: 20px; /* Abstand der Liste vom Rand */
    padding-left: 40px; /* Einrückung für Punkte oder Nummern */
    margin-top: 0; /* Kein zusätzlicher Abstand über der Liste */
    margin-bottom: 0; /* Kein zusätzlicher Abstand unter der Liste */
}
li {
    margin: 10px 0; /* Gleicher Abstand ober- und unterhalb jedes Punkts */
}