/* Global Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #333;
    --light-color: #f8f8f8;
    --dark-color: #222;
    --accent-color: #ff5722;
    --error-color: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: white;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-btn img {
    width: 20px;
    margin-right: 6px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-color);
    transform: translateY(-3px);
}

nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 20px 15px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown a {
    padding: 12px 15px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Standardmäßig ausblenden */
}

/* Dezenterer Anmeldung-Button */
.btn-menu {
    display: inline-block;
    background: rgba(76, 175, 80, 0.8); /* Leicht transparentes Grün */
    color: white !important;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500; /* Nicht so fett */
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 13px;
    margin-left: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-menu:hover {
    background: var(--primary-color);
    transform: translateY(-1px); /* Kleinere Bewegung */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    color: white !important;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.feature-box {
    flex-basis: calc(50% - 15px);
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* License Classes Section */
.license-classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.license-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.license-icon {
    background-color: var(--primary-color);
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.license-icon img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.license-info {
    padding: 20px;
    text-align: center;
}

.license-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.license-info p {
    margin-bottom: 20px;
    color: #666;
}

/* News Section */
.news {
    background-color: var(--light-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.news-content p {
    margin-bottom: 20px;
    color: #666;
}

/* Registration Section */
.registration-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.registration-content {
    flex: 1;
}

.registration-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.registration-content p {
    margin-bottom: 30px;
    color: #666;
}

.registration-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Checklist Section */
.checklist {
    background-color: var(--light-color);
}

.checklist-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.checklist-content {
    flex: 1;
}

.checklist-items {
    flex: 1;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checklist-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
}

.checklist-text h4 {
    margin-bottom: 5px;
}

.checklist-text p {
    color: #666;
}

.checklist-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.checklist-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checklist-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Education Section */
.education-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.education-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.education-content {
    padding: 20px;
}

.education-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.education-list {
    list-style: none;
}

.education-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.education-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.education-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.education-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.testimonial-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-arrow {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.page-banner-content {
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Form Section */
.form-section {
    padding: 60px 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.registration-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group .required::after {
    content: "*";
    color: var(--accent-color);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-control.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-check label {
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-full-width {
    width: 100%;
}

.form-button {
    text-align: center;
    margin-top: 30px;
}

.form-button .btn {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.how-found-container {
    border: 2px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.how-found-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.how-found-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input {
    margin-right: 10px;
}

.notice-box {
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.notice-box p {
    margin: 0;
    color: #555;
}

.success-message {
    display: none;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message h3 {
    margin-bottom: 10px;
}

/* Education Sections */
.education-section {
    padding: 80px 0;
}

.education-section:nth-child(even) {
    background-color: var(--light-color);
}

.education-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.education-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.education-image:hover img {
    transform: scale(1.05);
}

.education-content {
    flex: 1;
}

.education-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.education-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.education-text {
    margin-bottom: 20px;
}

.education-list {
    list-style: none;
    margin-bottom: 30px;
}

.education-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.education-list li:before {
    content: "—";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Learning Apps Section */
.learning-apps {
    background-color: white;
    padding: 60px 0;
}

.learning-apps-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.app-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-card {
    flex-basis: calc(33.333% - 20px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.app-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.app-description {
    margin-bottom: 20px;
    color: #666;
}

/* Special Drives Section */
.special-drives {
    padding: 60px 0;
    background-color: var(--light-color);
}

.special-drives-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.drives-container {
    display: flex;
    gap: 30px;
}

.drives-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drives-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drives-content {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.drives-list {
    list-style: none;
    margin-bottom: 30px;
}

.drives-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.drives-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.drives-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.drives-table th, .drives-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.drives-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.drives-table tr:last-child td {
    border-bottom: none;
}

.drives-table tr:hover td {
    background-color: #f5f5f5;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Overview Section */
.overview-section {
    padding: 60px 0;
}

.overview-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.overview-list {
    list-style: none;
    margin: 20px 0;
}

.overview-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.overview-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Services Cards */
.services-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--primary-color);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-content p {
    margin-bottom: 15px;
    color: #666;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Features Sections */
.feature-section {
    padding: 60px 0;
}

.feature-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-text {
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.reverse-container {
    flex-direction: row-reverse;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question.active {
    color: var(--primary-color);
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-toggle:before, .faq-toggle:after {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-toggle:before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-toggle:after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-question.active .faq-toggle:after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-question.active .faq-toggle:before {
    background-color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-box {
        flex-basis: 100%;
    }
    
    .registration-container, .checklist-container {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-menu {
        padding: 8px 16px;
        margin-left: 10px;
        font-size: 12px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .education-container {
        flex-direction: column;
    }
    
    .education-image {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
    
    .app-card {
        flex-basis: calc(50% - 15px);
    }
    
    .drives-container {
        flex-direction: column;
    }
    
    .drives-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .feature-container {
        flex-direction: column;
    }
    
    .feature-image {
        width: 100%;
        margin-bottom: 30px;
        height: 300px;
    }
    
    .reverse-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: white;
        flex-direction: column;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links li:hover .dropdown {
        max-height: 500px;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        display: block; /* Nur im mobilen Menü anzeigen */
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .btn-menu {
        margin: 10px 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-section-title {
        font-size: 1.3rem;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .app-card {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-arrows {
        display: none;
    }
    
    .page-banner {
        height: 200px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
    
    .registration-form {
        padding: 15px;
    }
    
    .form-button .btn {
        width: 100%;
    }
    
    .section-title, .education-title, .learning-apps-title, .special-drives-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .education-image {
        height: 200px;
    }
    
    .section-title, .feature-title {
        font-size: 1.5rem;
    }
}

/* Car Fleet Section */
.car-fleet {
    padding: 60px 0;
}

.car-fleet-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.car-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.car-image {
    flex: 1;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-image:hover img {
    transform: scale(1.05);
}

.car-gallery-nav {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.car-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* License Variants Section */
.license-variants {
    background-color: var(--light-color);
    padding: 60px 0;
}

.variants-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.variant-card {
    flex-basis: calc(50% - 15px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.variant-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.variant-content {
    padding: 20px;
}

.variant-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.variant-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.variant-content li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* License Requirements Section */
.license-requirements {
    padding: 60px 0;
}

.requirements-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.requirements-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirements-list {
    list-style: none;
    margin-bottom: 30px;
}

.requirements-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.requirements-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.requirements-content h3 {
    margin: 30px 0 15px;
    color: var(--primary-color);
}

/* Training Process Section */
.training-process {
    background-color: var(--light-color);
    padding: 60px 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    counter-reset: step-counter;
}

.process-step {
    flex-basis: calc(33.333% - 20px);
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    counter-increment: step-counter;
}

.process-step:before {
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.process-step p {
    color: #666;
}

/* Practical Training Section */
.practical-training {
    padding: 60px 0;
}

.practical-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.practical-content {
    display: flex;
    gap: 30px;
}

.practical-text {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.practical-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.practical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practical-list {
    list-style: none;
    margin-top: 20px;
}

.practical-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.practical-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Special Drives Section */
.special-drives {
    background-color: var(--light-color);
    padding: 60px 0;
}

.special-drives-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.special-drives-content {
    display: flex;
    gap: 30px;
}

.special-drives-text {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-drives-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-drives-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-drives-list {
    list-style: none;
    margin-top: 20px;
}

.special-drives-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.special-drives-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Media Queries for These Sections */
@media (max-width: 992px) {
    .variant-card {
        flex-basis: 100%;
    }
    
    .process-step {
        flex-basis: calc(50% - 15px);
    }
    
    .practical-content, .special-drives-content {
        flex-direction: column;
    }
    
    .practical-image, .special-drives-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .car-gallery {
        flex-wrap: wrap;
    }
    
    .car-image {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    
    .car-gallery-nav {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
    
    .process-step {
        flex-basis: 100%;
    }
}

/* Page Banner - Update background for BE page */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('https://images.unsplash.com/photo-1624628639856-100bf817a0e1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

/* Trailer License Overview */
.license-overview {
    padding: 60px 0;
}

.license-types {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.license-type {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    transition: all 0.3s ease;
}

.license-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.license-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.license-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.license-content {
    padding: 20px;
}

.license-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.license-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.license-content li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.weight-info {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.weight-info h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.comparison-table td:first-child {
    font-weight: 600;
}

.comparison-check {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-x {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Trailer Types Section */
.trailer-types {
    padding: 60px 0;
}

.trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trailer-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trailer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trailer-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--primary-color);
}

.trailer-content {
    padding: 20px;
}

.trailer-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trailer-content p {
    margin-bottom: 15px;
    color: #666;
}

.trailer-specs {
    list-style: none;
    margin-top: 15px;
}

.trailer-specs li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.trailer-specs li:before {
    content: "•";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Training Section */
.training-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.training-container {
    display: flex;
    gap: 30px;
}

.training-content {
    flex: 1;
}

.training-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.training-text {
    margin-bottom: 20px;
}

.training-list {
    list-style: none;
    margin-bottom: 20px;
}

.training-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.training-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.training-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Special Drives Section for BE page */
.special-drives-be {
    padding: 60px 0;
}

.special-drives-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.special-drives-content {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-drives-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-drives-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-drives-list {
    list-style: none;
    margin-top: 20px;
}

.special-drives-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.special-drives-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tips Section */
.tips-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.tip-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-text {
    color: #666;
}

/* Media Queries for BE page */
@media (max-width: 992px) {
    .license-types, .training-container, .special-drives-container {
        flex-direction: column;
    }
    
    .special-drives-image, .training-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .comparison-table {
        font-size: 0.7rem;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 8px 5px;
    }
}

/* Update background image for Kontakt page */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
}

.contact-forms {
    display: flex;
    gap: 30px;
}

.contact-form {
    flex: 1;
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.form-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-check input {
    margin-right: 10px;
}

.download-link {
    display: block;
    margin-top: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.download-link:hover {
    text-decoration: underline;
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.location-container {
    display: flex;
    gap: 30px;
}

.map-container {
    flex: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-details {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list li svg {
    margin-right: 10px;
    min-width: 20px;
    color: var(--primary-color);
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Additional Info Section */
.additional-info {
    padding: 60px 0;
}

.info-cards {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.info-card-content {
    padding: 20px;
}

.info-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card-text {
    margin-bottom: 20px;
    color: #666;
}

/* Media Queries for Kontakt page */
@media (max-width: 992px) {
    .contact-forms {
        flex-direction: column;
    }
    
    .location-container {
        flex-direction: column;
    }
    
    .contact-details {
        order: -1;
    }
    
    .info-cards {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }
}

/* Update background image for Zweiradklassen page */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('https://images.unsplash.com/photo-1558981403-c5f9c76c8384?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

/* Bike Fleet Section */
.bike-fleet {
    padding: 60px 0;
}

.bike-fleet-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.bike-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.bike-image {
    flex: 1;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bike-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bike-image:hover img {
    transform: scale(1.05);
}

.bike-gallery-nav {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.bike-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bike-gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* License Classes Section */
.license-classes {
    background-color: var(--light-color);
    padding: 60px 0;
}

.license-classes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.license-class-card {
    flex-basis: calc(33.333% - 20px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.license-class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.license-class-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.license-class-content {
    padding: 20px;
}

.license-class-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.license-class-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.license-class-content li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Special Rides Section */
.special-rides {
    padding: 60px 0;
}

.special-rides-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.special-rides-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-rides-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.special-rides-table th, .special-rides-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.special-rides-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.special-rides-table tr:last-child td {
    border-bottom: none;
}

.special-rides-table tr:hover td {
    background-color: #f5f5f5;
}

/* Media Queries for Zweiradklassen page */
@media (max-width: 992px) {
    .bike-gallery {
        flex-wrap: wrap;
    }
    
    .bike-image {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    
    .license-class-card {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .license-class-card {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .bike-gallery-nav {
        bottom: -20px;
    }
}

/* Special Drives BE Section - Korrigiert */
.special-drives-be {
    padding: 60px 0;
    background-color: var(--light-color);
}

.special-drives-be .special-drives-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-direction: row; /* Explizite Anweisung für die Richtung */
}

.special-drives-be .training-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
}

.special-drives-be .training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-drives-be .training-content {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-drives-be .training-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.special-drives-be .training-list {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.special-drives-be .training-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.special-drives-be .training-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Medienabfragen für BE-Spezialsektion */
@media (max-width: 992px) {
    .special-drives-be .special-drives-container {
        flex-direction: column;
    }
    
    .special-drives-be .training-image {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
}