body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgba(207, 206, 182, 0.29);
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0px 20px;
    }
.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: 300px;
}
header img {
    width: 400px;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: rgb(7, 4, 4);
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}
nav a:hover {
    background-color: rgb(0, 107, 113);
    color: rgb(255, 255, 255);
}
main {
    padding: 20px;
}
.welcome-section {
    background-image: url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px;
}
.client-section {
    text-align: center;
    padding: 10px 20px;
}

.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #00000000;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}
.services-section {
font-size: 25px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #000; /* Fügt eine Border-Box hinzu */
    padding: 40px; /* Erhöht das Padding der Sektion */
    border-radius: 10px;
    max-width: 650px; /* Verkleinert die Box-Größe */
    margin: 100px auto;
}
.business-section {
    text-align: center;
    padding: 10px 20px;
}
.business-images {
    display: flex;
    justify-content: center;
    gap: 150px;
    }
.ueber-uns-section  {
font-size: 25px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
font-size: 25px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
border: 2px solid #000; /* Fügt eine Border-Box hinzu */
    padding: 40px; /* Erhöht das Padding der Sektion */
    border-radius: 10px;
    max-width: 650px; /* Verkleinert die Box-Größe */
    margin: 100px auto;
}   
.kontakt-section {
    text-align: left;
    padding: 10px 100px;
}
footer {
    background-color: rgb(0, 108, 113);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}
footer a {
    color: rgb(12, 0, 72);
    text-decoration: none;
    font-weight: bold;
}
footer a:hover {
    color: rgba(255, 255, 255, 0.725);
}

/* Media Queries für mobile Geräte */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    nav a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
    .services-section {
        padding: 20px;
        margin: 20px auto;
    }
    .kontakt-section {
        padding: 20px;
    }
}