/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header-Stile - Logo links, Text mittig, Navigation rechts */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 110px;
    display: block;
}

.logo a {
    display: block;
}

.header-center {
    flex: 1;
    text-align:center;
    padding: 0 40px;
}

.header-center h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Times New Roman', Times, serif;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
}

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

.nav-links li {
    margin: 0 0 0 25px;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Slider-Stile */
.slider-container {
    position:relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 1px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display:flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 5px;
    max-width: 60%;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
}

/* Slider Steuerelemente */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #2c3e50;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-container:hover .slider-btn,
.slider-container:hover .slider-indicators {
    opacity: 1;
    visibility: visible;
}

/* Slider Link Styling */
.slider-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.slider-link:hover {
    color: #3498db;
    border-bottom: 1px solid #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}
/* Slider Link Styling - KORRIGIERT */
.slider-link {
    color: white !important; /* Wichtig: explizit weiß setzen */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding-bottom: 2px;
    display: inline-block; /* Für bessere Klickbarkeit */
}

.slider-link:hover {
    color: #3498db !important; /* Wichtig: Hover-Farbe explizit setzen */
    border-bottom: 1px solid #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Slider Link Fix */
.slide-content {
    position: relative;
    z-index: 20; /* Höher als die Slider-Buttons */
}

.slider-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding-bottom: 2px;
    display: inline-block;
    position: relative;
    z-index: 25; /* Noch höher als der Slide-Content */
    cursor: pointer;
}

.slider-link:hover {
    color: #3498db !important;
    border-bottom: 1px solid #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Sicherstellen, dass die Slider-Buttons den Link nicht überdecken */
.slider-btn {
    z-index: 15; /* Niedriger als der Link */
}

.slider-indicators {
    z-index: 15; /* Niedriger als der Link */
}






/* Leistungen-Stile */
.services {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2rem;
}

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

.service-block {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-block p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Footer - Neue Struktur mit reduziertem Abstand */
footer {
    background: #2c3e50;
    /*background: #334141;*/
    color: white;
    padding: 20px 5% 15px;
}

/* Obere Reihe */
.footer-top {
    margin-bottom: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; /* Reduziert von 40px auf 20px */
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section h4 {
    /*color: #3498db;*/
    color: #e1eaf0;
    font-size: 1.1rem;
    margin-bottom: 12px; /* Leicht reduziert */
    font-weight: 600;
    width: 100%;
}

/* Unsere Objekte - Links */
.platforms-section {
    justify-self: start;
}

/* Vertragspartner - Rechts */
.partner-section {
    justify-self: end;
}

/* Partner Logos mit reduziertem Abstand */
.partner-logos {
    display: flex;
    flex-direction: row;
    gap: 25px; /* Reduziert von 40px */
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Leicht reduziert */
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Platform Logos */
.platform-logos {
    display: flex;
    justify-content: center;
    gap: 15px; /* Reduziert von 20px */
    align-items: center;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.platform-link:hover {
    transform: translateY(-2px);
}

.platform-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Untere Reihe - Copyright links, Navigation rechts */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-nav {
    margin: 0;
    border: none;
    padding: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* Reduziert von 25px */
    flex-wrap: wrap;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links li a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        gap: 15px; /* Weiter reduziert auf Tablets */
    }
    
    .partner-logos {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 15px 5% 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platforms-section,
    .partner-section {
        justify-self: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px; /* Reduziert */
        text-align: center;
    }
    
    .partner-logos {
        gap: 20px;
    }
    
    .platform-logos {
        gap: 12px;
    }
    
    .partner-logo,
    .platform-logo {
        height: 55px; /* Leicht angepasst */
    }
    
    .footer-section h4 {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 8px; /* Enger auf kleinen Bildschirmen */
        align-items: center;
    }
    
    .partner-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-logo,
    .platform-logo {
        height: 50px;
    }
    
    .footer-content {
        gap: 15px;
    }
}

/* Über mich Section */
.about-section {
    padding: 80px 5%;
    background-color: #f6f6f8;
    
}

.about-container {
    display: flex;
    align-items: flex-start; /* Oder 'center' wenn du zentrierte Ausrichtung willst */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Optional: Bild vertikal zentrieren */
.about-image {
    flex: 0 0 400px;
    display: flex;
    align-items: center; /* Bild vertikal zentrieren */
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-text h2 {
    color: #3498db;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #083b4e;
    border-radius: 5px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* Responsive Design für About Section */
@media (max-width: 992px) {
    .about-container {
        gap: 40px;
    }
    
    .about-image {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 5%;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-image {
        flex: 0 0 auto;
        max-width: 400px;
        width: 100%;
    }
    
    .about-text h1 {
        font-size: 2.2rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 5%;
    }
    
    .about-text h1 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
    }
}

/* Kundenstimmen Hero Bereich */
.testimonials-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                url('images/kundenstimmen2.png') center/cover;
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
}


.hero-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-container p {
    font-size: 1.3rem;
    opacity: 0.9;
   
}


/* Kundenstimmen Hauptbereich */
.testimonials-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Bewertungskarten */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Sterne */
.stars {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Bewertungstext */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

/* Kundeninformation */
.customer-info {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.customer-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.customer-location {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 100px 5% 60px;
    }
    
    .hero-container h1 {
        font-size: 2.5rem;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .stars {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 80px 5% 50px;
    }
    
    .hero-container h1 {
        font-size: 2.2rem;
    }
    
    .hero-container p {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Kontakt Hero Bereich */
/* Contact Hero Bereich */
.contact-hero {
    background: linear-gradient(rgba(7, 86, 76, 0.9), rgba(44, 62, 80, 0.9)), 
                url('images/kontakt5.png') center/cover;
    color: white;
    padding: 140px 5% 120px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.3;
}

/* Map Container Styling */
.map-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Content */
.contact-content {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr; /* Linke Spalte schmaler */
    gap: 40px;
    align-items: start;
}

/* Linke Spalte - weiter links und kompakter */
.contact-left {
    margin-left: 0;
    padding-left: 0;
}

.contact-left h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card, .hours-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-card h3, .hours-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-card h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.address {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 15px;
}

.phone {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #555;
}

.email-line {
    display: flex;
    align-items: center; /* Stellt sicher, dass beide Elemente vertikal zentriert sind */
    gap: 8px;
    margin-top: 8px;
}

.email-label {
    color: #555;
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1; /* Gleiche Zeilenhöhe */
}

.email {
    color: #3498db;
    text-decoration: none;
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1; /* Gleiche Zeilenhöhe */
    vertical-align: middle; /* Zusätzliche Sicherheit */
}

.email:hover {
    text-decoration: underline;
}


/* Rechte Spalte - breiter und auf gleicher Höhe */
.contact-right {
    margin-top: 0; /* Startet auf gleicher Höhe wie linke Spalte */
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-card, .links-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.map-card h3, .links-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.rating {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-text {
    color: #555;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 350px;
}

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

.map-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

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

/* Links List */
.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.links-list li:last-child {
    border-bottom: none;
}

.links-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.links-list a:hover {
    color: #3498db;
}

.links-list strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 320px 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 5% 50px;
    }
    
    .contact-hero h1 {
        font-size: 2.3rem;
    }
    
    .contact-content {
        padding: 40px 5%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-left h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contact-card, .hours-card, .map-card, .links-card {
        padding: 20px;
    }
    
    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 5% 40px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        padding: 30px 5%;
    }
    
    .contact-card, .hours-card, .map-card, .links-card {
        padding: 15px;
    }
    
    .map-container {
        height: 200px;
    }
}

/* Impressum Section - Vereinfachte Version */
.impressum-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

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

.impressum-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.impressum-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
}

.impressum-content h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.impressum-content h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.impressum-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.impressum-content a {
    color: #3498db;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

.impressum-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive Design für Impressum */
@media (max-width: 768px) {
    .impressum-section {
        padding: 60px 5%;
    }
    
    .impressum-content {
        padding: 30px 25px;
    }
    
    .impressum-content h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .impressum-content h2 {
        font-size: 1.3rem;
        margin: 30px 0 15px 0;
    }
}

@media (max-width: 480px) {
    .impressum-section {
        padding: 40px 5%;
    }
    
    .impressum-content {
        padding: 25px 20px;
    }
    
    .impressum-content h1 {
        font-size: 2rem;
    }
    
    .impressum-content h2 {
        font-size: 1.2rem;
    }
    
    .impressum-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .impressum-section {
        padding: 40px 5%;
    }
    
    .impressum-section h1 {
        font-size: 2rem;
    }
    
    .impressum-content {
        padding: 25px 20px;
    }
    
    .impressum-section h2 {
        font-size: 1.3rem;
    }
    
    .impressum-section h3 {
        font-size: 1.1rem;
    }
}

/* Styling für das Widerrufsformular */
.legal-form {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.legal-form p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Datenschutz Section */
.datenschutz-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

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

.datenschutz-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.datenschutz-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
}

.datenschutz-content h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.datenschutz-content h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.datenschutz-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.datenschutz-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.datenschutz-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.datenschutz-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.datenschutz-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.datenschutz-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    position: relative;
}

.datenschutz-content li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Spezielle Stile für verschachtelte Listen */
.datenschutz-content ul ul {
    margin: 10px 0;
    padding-left: 20px;
}

.datenschutz-content ul ul li:before {
    content: "◦";
    color: #7f8c8d;
}

/* Hervorhebung für wichtige Abschnitte */
.datenschutz-text {
    line-height: 1.7;
}

/* Responsive Design für Datenschutz */
@media (max-width: 992px) {
    .datenschutz-content {
        padding: 40px 30px;
    }
    
    .datenschutz-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .datenschutz-section {
        padding: 60px 5%;
    }
    
    .datenschutz-content {
        padding: 30px 25px;
    }
    
    .datenschutz-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .datenschutz-content h2 {
        font-size: 1.3rem;
        margin: 30px 0 15px 0;
    }
    
    .datenschutz-content h3 {
        font-size: 1.1rem;
    }
    
    .datenschutz-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .datenschutz-section {
        padding: 40px 5%;
    }
    
    .datenschutz-content {
        padding: 25px 20px;
        border-radius: 8px;
    }
    
    .datenschutz-content h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .datenschutz-content h2 {
        font-size: 1.2rem;
    }
    
    .datenschutz-content h3 {
        font-size: 1.1rem;
    }
    
    .datenschutz-content ul {
        padding-left: 15px;
    }
    
    .datenschutz-content li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

/* Druckoptimierungen */
@media print {
    .datenschutz-section {
        padding: 0;
        background: white;
    }
    
    .datenschutz-content {
        box-shadow: none;
        border-radius: 0;
        padding: 20px;
    }
    
    .datenschutz-content a {
        color: #2c3e50;
        text-decoration: none;
    }
}



/* Optional: Hero Bereich für Datenschutz */
.datenschutz-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                url('images/datenschutz-hero.jpg') center/cover;
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
}

.datenschutz-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* HTML für Hero-Bereich würde dann so aussehen: */
/*
<section class="datenschutz-hero">
    <div class="container">
        <h1>Datenschutz</h1>
        <p>Ihre Daten sind bei uns in guten Händen</p>
    </div>
</section>
*/

/* Füge diese CSS-Regeln hinzu */

/* Hamburger-Menü Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Hamburger anzeigen */
    .hamburger {
        display: flex;
    }
    
    /* Navigation verstecken */
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .nav-container.active {
        right: 0;
    }
    
    /* Navigation als vertikale Liste */
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .nav-links a:hover::after {
        width: 0; /* Unterstreichung deaktivieren für mobile */
    }
    
    /* Overlay für Menü */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Logo kleiner machen auf mobil */
    .logo img {
        height: 80px;
    }
    
    /* Header anpassen */
    header {
        padding: 10px 5%;
        position: relative;
        z-index: 1001;
    }
}

/* Füge diese Media Queries hinzu oder ergänze bestehende */

@media (max-width: 768px) {
    .slider-container {
        height: 400px; /* Kleinere Höhe für mobile */
    }
    
    .slide-content {
        max-width: 90%; /* Mehr Breite nutzen */
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.7); /* Dunkler für bessere Lesbarkeit */
    }
    
    .slide-content h2 {
        font-size: 1.8rem; /* Kleinere Schriftgröße */
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    /* Slider Buttons kleiner und besser positionieren */
    .slider-btn {
        padding: 8px 12px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    /* Indikatoren besser sichtbar machen */
    .slider-indicators {
        opacity: 1;
        visibility: visible;
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Slider-Links besser für mobile */
    .slider-link {
        font-size: 1rem;
        padding-bottom: 3px;
        display: inline-block;
        max-width: 100%;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        padding: 5px 8px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
}

/* Service Block mobile Geräte */
@media (max-width: 768px) {
    .services {
        padding: 40px 5%;
    }
    
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .service-block {
        padding: 20px;
    }
    
    .service-block h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr; /* Einspaltig auf sehr kleinen Geräten */
    }
    
    .service-block {
        padding: 15px;
    }
}


/* Footer Optimierung mobile Geräte */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px; /* Mehr Abstand zwischen den Bereichen */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
    }
    
    /* Cookie-Link besser sichtbar */
    .footer-links li:last-child a {
        background-color: rgba(52, 152, 219, 0.1);
        padding: 5px 10px;
        border-radius: 3px;
        display: inline-block;
    }
}

/* Verbesserung aboutme.html mobile Geräte*/
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .about-text, 
    .about-right-column {
        width: 100%;
    }
    
    .about-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .about-text ul {
        font-size: 16px;
        line-height: 1.5;
    }
    
   /* .about-image {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-image img {
        max-width: 250px;
        height: auto;
    }
    */
    .contact-info {
        font-size: 14px;
        padding: 15px;
        background: #f5f5f5;
        border-radius: 8px;
    }
}

/* Optimierung Darstellung Kontakt Tel/Mobil/E-mail */
/* Styling für klickbare Telefonnummern */
.contact-details .phone a {
    color: #3498db;
    /*color: #007bff;*/
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details .phone a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Für mobile Geräte */
@media (max-width: 768px) {
    .contact-details .phone a {
        font-size: 1.1rem;
        padding: 4px 8px;
        display: inline-block;
        border-radius: 4px;
        background: rgba(0, 123, 255, 0.05);
    }
    
    /* Größere Tappfläche für mobile Geräte */
    .contact-details .phone a,
    .contact-details .email {
        min-height: 44px;
        min-width: 44px;
        line-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .phone-label,
    .email-label {
        display: inline-block;
        min-width: 70px;
        font-weight: 600;
        color: #333;
    }
}

/* Für sehr kleine Geräte */
@media (max-width: 480px) {
    .contact-details .phone,
    .contact-details .email-line {
        margin-bottom: 15px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .contact-details .phone a {
        font-size: 1.2rem;
        padding: 8px 12px;
    }
}

/* KORREKTUR: Entfernt den blauen Hintergrund auf mobilen Geräten */
@media (max-width: 768px) {
    .contact-details .phone a {
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    /* Stattdessen: Bessere Sichtbarkeit durch Farbe und Gewicht */
    .contact-details .phone a {
        color: #3498db;
        font-weight: 600;
        text-decoration: underline;
        text-decoration-thickness: 1.5px;
        text-underline-offset: 2px;
    }
    
    .contact-details .phone-label {
        font-weight: 600;
        color: #333;
        margin-right: 5px;
    }
}

/* Mobile Optimierung für Kontaktdaten */
@media (max-width: 768px) {
    .contact-details {
        margin-top: 20px;
    }
    
    .contact-details p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    /* Labels */
    .phone-label,
    .email-label {
        font-weight: 700;
        color: #2c3e50;
        min-width: 75px;
        font-size: 1rem;
    }
    
    /* Telefonnummern und E-Mail gleich formatieren */
    .contact-details a[href^="tel:"],
    .contact-details .email {
        font-size: 1.10rem;
        font-weight: 600;
        color: #3498db;
        text-decoration: none;
        padding: 5px 0;
        flex-grow: 1;
    }
    
    /* Unterstreichung bei Hover/Tap */
    .contact-details a[href^="tel:"]:hover,
    .contact-details .email:hover,
    .contact-details a[href^="tel:"]:active,
    .contact-details .email:active {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        color: #004d99;
    }
    
    /* Größere Tappfläche */
    .contact-details a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Für Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-details .email {
        font-size: 1.05rem;
    }
}



/* =========================================== */
/* SLIDER TEXT POSITIONIERUNG - Tiefer setzen */
/* =========================================== */

/* Desktop: Standard (zentriert) */
.slide {
    display: flex;
    align-items: center; /* Vertikal zentriert */
    justify-content: center; /* Horizontal zentriert */
}

.slide-content {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 5px;
    max-width: 60%;
    /* Derzeit: positioniert sich durch Flexbox automatisch */
}

/* Mobile Geräte: Text tiefer positionieren */
@media (max-width: 768px) {
    .slide {
        align-items: flex-end; /* Statt center - Text nach unten */
        justify-content: center;
        padding-bottom: 80px; /* Abstand vom unteren Rand */
    }
    
    .slide-content {
        max-width: 90%; /* Mehr Breite auf mobilen Geräten */
        padding: 20px;
        margin-bottom: 20px; /* Zusätzlicher Abstand nach unten */
        /* Optional: Transparenter machen für bessere Bildsicht */
        background-color: rgba(0, 0, 0, 0.4);
    }
    
    /* Speziell für das erste Slide (Profilbild) */
    .slide.active:first-child .slide-content {
        margin-bottom: 5px; /* Noch weiter nach unten */
        background-color: rgba(0, 0, 0, 0.35); /* Weniger Deckkraft */
    }
}

/* Noch mehr Verschiebung für sehr kleine Geräte */
@media (max-width: 480px) {
    .slide {
        align-items: flex-end;
        padding-bottom: 60px;
    }
    
    .slide-content {
        max-width: 95%;
        padding: 15px;
        margin-bottom: 5px; /* Mehr Abstand nach unten */
        background-color: rgba(0, 0, 0, 0.3); /* Noch transparenter */
    }
    
    .slide.active:first-child .slide-content {
        margin-bottom: 1px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    .slide-content h2 {
        font-size: 1.8rem; /* Etwas kleiner auf sehr kleinen Geräten */
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}


/* Füge diese CSS-Regeln zu deinem slider-btn Stil hinzu oder passe bestehende an */

@media (max-width: 768px) {
    /* Slider-Buttons immer sichtbar und über dem Content */
    .slider-btn {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 100 !important; /* Viel höher als der Content */
        background: rgba(255, 255, 255, 0.9);
        color: #2c3e50;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .slider-btn:hover {
        background: rgba(255, 255, 255, 1);
    }
    
    /* Slide-Content kleiner und niedrigeren z-index */
    .slide-content {
        max-width: 85%;
        z-index: 50; /* Niedriger als die Buttons */
        pointer-events: none; /* Wichtig: erlaubt Klicks durch den Content */
    }
    
    /* Die Links innerhalb müssen pointer-events haben */
    .slider-link {
        pointer-events: auto; /* Links bleiben klickbar */
        position: relative;
        z-index: 60;
    }
    
    /* Slider-Indikatoren auch immer sichtbar */
    .slider-indicators {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 100 !important;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slide-content {
        max-width: 90%;
        padding: 15px;
    }
}


