
.chauffeur-section {
    padding-top: 10rem;
    /*color: var(--text-color);*/
}
.content-3 {
    display: flex; /* Ermöglicht flexibles Layout */
    flex-wrap: wrap; /* Umbrüche bei kleineren Bildschirmen */
    justify-content: space-between; /* Platz zwischen den Elementen */
    align-items: center; /* Vertikale Ausrichtung */
    gap: 20px; /* Abstand zwischen den Elementen */
    padding: 4rem; /* Innenabstand */
    background: #f9f9f9; /* Hintergrundfarbe */
    border-radius: 10px; /* Abgerundete Ecken */
}

.text-3 {
    font-family: 'Montserrat', sans-serif, Arial, sans-serif;
    flex: 1; /* Nimmt verfügbaren Platz ein */
    text-align: left; /* Textausrichtung */
    /*color: #333; !* Textfarbe *!*/
    line-height: 1.6; /* Zeilenhöhe für bessere Lesbarkeit */
    font-size: 1rem; /* Standard-Schriftgröße */
}
/* Hero Section */
.hero-chauffeur {
    background: linear-gradient(45deg, var(--beige-2), var(--beige-1));
    /*background: linear-gradient(45deg, var(--brown-4), var(--beige-3));*/
    color: #333333;
    text-align: center;
    padding: 50px 20px;
}

.hero-chauffeur h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-chauffeur p {
    font-size: 1.2rem;
}

/* Beschreibung */
.chauffeur-description .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 20px;
    background: var(--background-color);
}

.chauffeur-description .text {
    flex: 1;
}

.chauffeur-description .text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.chauffeur-description .text ul {
    list-style: none;
    padding: 0;
}

.chauffeur-description .text ul li::before {
    content: "✔";
    color: var(--secondary-color);
    margin-right: 10px;
}

.chauffeur-description .image {
    flex: 1;
}

.chauffeur-description img {
    width: 100%;
    border-radius: 10px;
}

/* Vorteile */
.chauffeur-benefits {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 50px 20px;
    /*background: linear-gradient(45deg, var(--brown-4), var(--beige-3));*/
    background: linear-gradient(45deg, var(--beige-2), var(--beige-1));
    color: #383838;
    text-align: center;
}

.chauffeur-benefits .benefit {
    flex: 1;
    padding: 10px;
}
.chauffeur-benefits p {
    font-family: "Montserrat", sans-serif, Arial, sans-serif;
}

.chauffeur-benefits .benefit i {
    font-size: 2rem;
    color: var(--beige-3);
    margin-bottom: 10px;
}

.chauffeur-benefits .benefit h3 {
    font-size: 1.5rem;
}

/* Exklusive Features */
.exclusive-features {
    padding: 50px 20px;
    background: var(--background-color);
    text-align: center;
}

.exclusive-features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.exclusive-features .features {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.exclusive-features .feature-item {
    text-align: center;
    flex: 1;
}

.exclusive-features img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 10px;
}
.video {
    max-width: 600px;
    height: auto;
}
/* Responsive */
@media screen and (max-width: 768px) {
    .chauffeur-description .content {
        flex-direction: column;
    }
    .content-3 {
        flex-direction: column; /* Elemente untereinander stapeln */
        padding: 1rem;
    }
    .video {
        max-width: 100%;
        height: auto;
    }
    .text-3 {
        text-align: center; /* Zentrierte Ausrichtung auf kleineren Bildschirmen */
    }
    .chauffeur-benefits {
        flex-direction: column;
    }

    .exclusive-features .features {
        flex-direction: column;
    }
}