/* Globale Stile und Reset (existing styles) */
:root {
    --color-dark-bg: #0052CC; /* Sehr dunkler, technischer Hintergrund */
    --color-medium-dark-bg: #0052CC; /* Etwas hellerer Dunkelton */
    --color-light-bg: #e2e2e8; /* Für Abschnitte, die sich abheben */
    --color-primary-accent: #ffffff; /* Kräftiges Gold/Gelb für Akzente, ähnlich Warnsignal */
    --color-secondary-accent: #f2ea05; /* Ein kühles Blau für Kontrast */
    --color-primary-accent-rgb: 255, 255, 255;
    --color-text-light: #F0F0F0; /* Heller, gut lesbarer Text */
    --color-text-medium: #B0B0B0; /* Mittelgrauer Text für Details */
    --color-border: #0404f0; 
    --color-dark: #030304;/* Dezente, dunkle Linien */
    --transition-speed: 0.4s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}


body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--color-text-light);
    background-color: var(--color-dark-bg);
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
}

.section-padded {
    padding: 5px 0;
    position: relative;
    z-index: 1;
}


/* Header (unverändert) */
.main-header {
    background-color: var(--color-medium-dark-bg);
    color: var(--color-text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary-accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo span {
    color: var(--color-text-light); /* Or adjust as needed */
}

/* Main Navigation (unverändert) */
.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    position: relative;
    margin-left: 20px;
}

.main-nav ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color var(--transition-speed);
}

.main-nav ul li a:hover {
    color: var(--color-primary-accent);
}

/* Submenu (unverändert) */
.has-submenu {
    position: relative;
}

.has-submenu .submenu-toggle {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1em;
    cursor: pointer;
    margin-left: 5px;
    padding: 5px;
    transition: color var(--transition-speed);
}

.has-submenu .submenu-toggle:hover {
    color: var(--color-primary-accent);
}

/* ACHTUNG: Diese .submenu-Regel wird von nav.css überschrieben oder ergänzt. Stellen Sie sicher, dass nav.css danach geladen wird. */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-medium-dark-bg);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    border-top: 2px solid var(--color-primary-accent);
}

.submenu.active {
    display: block;
}

.submenu li a {
    padding: 10px 20px;
    white-space: nowrap;
}

/* Mobile menu toggle (unverändert) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--color-primary-accent);
    cursor: pointer;
}

/* Hero Section - KORRIGIERTER BEREICH */
.hero-section {
    position: relative;
    width: 100%;
    height: 55vh; 
    min-height: 350px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
    background-color: #85838a; 
}

.hero-slideshow-container {
    position: absolute; /* WICHTIG: Absolut positioniert, um Überlappung zu ermöglichen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* display: flex;         <-- DIESE ZEILE ENTFERNEN (war falsch für absolute Kinder) */
    /* align-items: center;   <-- DIESE ZEILE ENTFERNEN */
    /* justify-content: center; <-- DIESE ZEILE ENTFERNEN */
    z-index: 1; /* Below particles */
}


.hero-slide-image { /* WICHTIG: Von .hero-slideshow img zu .hero-slide-image geändert */
    position: absolute; /* WICHTIG: Absolut positioniert, damit Bilder übereinander liegen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Standardmäßig ausgeblendet */
    transition: opacity 1s ease-in-out;
}

.hero-slide-image.active {
    opacity: 0.6; /* Leicht transparent für Text-Overlay */
}

.hero-text-container {
    position: relative; /* WICHTIG: Bleibt relative, damit seine Kinder (.hero-text-slide) darin absolut positioniert werden können */
    text-align: center;
    color: var(--color-text-light);
    z-index: 2; /* Above images and particles */
    padding: 20px;
    max-width: 800px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    /* Hinzugefügt/Angepasst für Zentrierung des Text-Containers in .hero-section, wenn er selbst zentriert wird */
    width: 100%; /* Wichtig, damit die absoluten Kinder eine Bezugsgröße haben */
    height: 100%; /* Wichtig, damit die absoluten Kinder eine Bezugsgröße haben */
    display: flex; /* Dient dazu, die absolut positionierten Text-Slides zu zentrieren */
    align-items: center; /* Vertikale Zentrierung der absolut positionierten Kinder im Flex-Container */
    justify-content: center; /* Horizontale Zentrierung der absolut positionierten Kinder im Flex-Container */
}

/* WICHTIG: .slide-content durch .hero-text-slide ersetzen und Positionierung hinzufügen! */
.hero-text-slide { /* NEU: Dies ist der Selektor für Ihre Text-Slides */
    display: none; /* Standardmäßig ausgeblendet */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute; /* WICHTIG: Absolut positioniert, damit sie übereinander liegen */
    width: 100%; /* Nimm die volle Breite des .hero-text-container ein */
    /* Für exakte vertikale und horizontale Zentrierung innerhalb von hero-text-container */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px; /* Sicherstellen, dass der Text nicht am Rand klebt */
    box-sizing: border-box; /* Padding im Width enthalten */
}

.hero-text-slide.active {
    display: block; /* Nur der aktive Text-Slide ist sichtbar */
    opacity: 1;
}

/* H2 und P Tags innerhalb der Text-Slides anpassen */
.hero-text-slide h2 { /* Von .slide-content h2 geändert */
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--color-primary-accent);
}

.hero-text-slide p { /* Von .slide-content p geändert */
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Particles.js Overlay (unverändert) */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Below text content, above images */
    background-color: transparent; /* Particles draw over this */
}

/* Sections (unverändert) */
.section-padded {
    padding: 8px 0;
    position: relative;
    z-index: 1;
}

.section-light {
    background-color: var(--color-medium-dark-bg);
    border-bottom: 1px solid var(--color-border);
}

.section-dark {
    background-color: var(--color-medium-dark-bg);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    color: var(--color-primary-accent);
    text-align: center;
    margin-bottom: 60px;
}

/* Service Grid (unverändert) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--color-dark-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.service-item .icon {
    font-size: 3em;
    color: var(--color-secondary-accent);
    margin-bottom: 20px;
}

.service-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--color-text-light);
}

.service-item p {
    color: var(--color-text-medium);
}

/* About Section (unverändert) */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Equipment Section (unverändert) */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-item {
    background-color: var(--color-primary-accent);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
}

.equipment-item img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.equipment-item h4 {
    font-family: 'arial', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--color-medium-dark-bg);
}

.equipment-item p {
    color: var(--color-dark);
}

/* Call to Action Section (unverändert) */
.cta-section {
    background: linear-gradient(rgba(61, 132, 219, 0.7), rgba(0, 0, 0, 0.7)), url("../images/cta-background2.png") no-repeat center center/cover;
    padding: 10px 0;
    text-align: center;
    color: var(--color-text-light);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.cta-content h3 {
    font-family: 'arial', sans-serif;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--color-primary-accent);
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

/* Container für das Social Media Element */
.social-media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 15px; /* Leicht abgerundete Ecken */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram-Farbverlauf als Hintergrund */
    color: white; /* Textfarbe anpassen */
    max-width: 100%; /* Max. Breite für einen ansprechenden Container */
    margin: 0 auto; /* Zentrieren */
}

/* Link zum Instagram-Profil */
.instagram-link {
    text-decoration: none;
    color: inherit; /* Vererbt die Farbe vom Eltern-Element */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Instagram Icon */
.instagram-icon {
    width: 80px; /* Größe des Icons anpassen */
    height: 80px;
    border-radius: 20px; /* Leicht abgerundete Ecken für das Icon */
    object-fit: cover; /* Sicherstellen, dass das Bild passt */
    border: 3px solid #fff; /* Weißer Rand um das Icon */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Schatten für das Icon */
}

/* Instagram Handle (Benutzername) */
.instagram-handle {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Leichter Schatten für den Text */
}

/* Folgen-Button */
.follow-button {
    background-color: #ffffff;
    color: #e6683c; /* Farbe passend zum Verlauf */
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.follow-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer Links */
.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}
/* Contact Section (unverändert) */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-accent);
    box-shadow: 0 0 8px rgba(var(--color-primary-accent-rgb), 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 15px;
}


.contact-info, .contact-form-wrapper {
    background-color: var(--color-dark-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    line-height: 1.3; /* Standard ist meist 1.7 */
    margin-bottom: 6px; /* Weniger Abstand zwischen den Zeilen */
}

.contact-info h4, .contact-form-wrapper h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    color: var(--color-primary-accent);
    margin-bottom: 0px;
}

.contact-info p {
    margin-bottom: 0px;
    color: var(--color-text-light);
}

.contact-info p strong {
    color: var(--color-secondary-accent);
}

.contact-info a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-speed);
    word-wrap: break-word;   
    display: inline-block;   
    max-width: 100%;         
    box-sizing: border-box;  
}

.contact-info a:hover {
    color: var(--color-primary-accent);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background-color: var(--color-medium-dark-bg);
    color: var(--color-text-light);
    font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-medium);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-accent);
    box-shadow: 0 0 8px rgba(var(--color-primary-accent-rgb), 0.5);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Container für das Social Media Element - WhatsApp */
.social-media-item.whatsapp-style {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #25D366; /* WhatsApp Grün */
    color: white;
    max-width: 100%;
    margin: 0px auto; /* Etwas Abstand zum Instagram-Container */
}

/* Link zum WhatsApp-Chat */
.whatsapp-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Handle (Text) */
.whatsapp-handle {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Chat-Button */
.chat-button {
    background-color: #ffffff;
    color: #25D366; /* WhatsApp Grün */
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.chat-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer (unverändert) */
.main-footer {
    background-color: var(--color-dark-bg);
    color: var(--color-text-medium);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    color: var(--color-primary-accent);
    margin-bottom: 20px;
}

.footer-col p, .footer-col ul {
    font-size: 0.95em;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--color-text-medium);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-col ul li a:hover {
    color: var(--color-primary-accent);
}

.footer-col.social-links a {
    display: inline-block;
    color: var(--color-text-medium);
    text-decoration: none;
    margin-right: 15px;
    font-size: 1em;
    transition: color var(--transition-speed);
}

.footer-col.social-links a:hover {
    color: var(--color-primary-accent);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.85em;
    color: var(--color-text-medium);
}

/* Buttons (unverändert) */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--transition-speed), color var(--transition-speed), transform 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary-accent);
    color: var(--color-dark-bg);
}

.btn-primary:hover {
    background-color: #ffd700; /* Slightly lighter gold */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary-accent);
    color: var(--color-dark-bg);
}

.btn-secondary:hover {
    background-color: #4dc3ff; /* Slightly lighter blue */
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.btn-nav {
    background-color: transparent;
    border: 1px solid var(--color-primary-accent);
    color: var(--color-primary-accent);
}

.btn-nav:hover {
    background-color: var(--color-primary-accent);
    color: var(--color-dark-bg);
}

/* Fade-in effect (unverändert) */
.fade-in {
    opacity: 1;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch effect (unverändert) */
.glitch {
    position: relative;
    color: var(--color-primary-accent); /* Use your accent color */
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--color-secondary-accent);
    animation: glitch-anim-1 2s infinite alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--color-primary-accent), 2px 0 var(--color-secondary-accent);
    animation: glitch-anim-2 2.5s infinite alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(35px, 9999px, 80px, 0);
    }
    10% {
        clip: rect(100px, 9999px, 20px, 0);
    }
    100% {
        clip: rect(50px, 9999px, 120px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(100px, 9999px, 20px, 0);
    }
    20% {
        clip: rect(15px, 9999px, 100px, 0);
    }
    100% {
        clip: rect(80px, 9999px, 30px, 0);
    }
}


/* Media Queries - KORRIGIERTER BEREICH */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 80px; /* Below fixed header */
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background-color: var(--color-medium-dark-bg);
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        padding: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-text-container {
        padding: 15px;
    }

    /* WICHTIG: Selektor von .slide-content h2 zu .hero-text-slide h2 geändert */
    .hero-text-slide h2 {
        font-size: 2.5em;
    }

    /* WICHTIG: Selektor von .slide-content p zu .hero-text-slide p geändert */
    .hero-text-slide p {
        font-size: 1em;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1; /* Image above text on smaller screens */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul {
        padding-left: 0;
    }

    .footer-col.social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-col.social-links a {
        margin: 0 10px 10px;
    }

    /* Submenu on mobile (unverändert) */
    .has-submenu .submenu-toggle {
        display: inline-block; /* Show toggle button */
    }
    .submenu {
        position: static; /* Stack vertically */
        box-shadow: none;
        border-top: none;
        width: auto;
        max-height: 0; /* Hidden by default */
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .submenu.active {
        max-height: 500px; /* Arbitrary large value to show content */
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .logo img {
        height: 45px;
    }

    .logo span {
        font-size: 1.6em;
    }

    .hero-section {
        height: 40vh;
        min-height: 250px;
    }

    /* WICHTIG: Selektor von .slide-content h2 zu .hero-text-slide h2 geändert */
    .hero-text-slide h2 {
        font-size: 2em;
    }

    /* WICHTIG: Selektor von .slide-content p zu .hero-text-slide p geändert */
    .hero-text-slide p {
        font-size: 0.9em;
    }

    .btn-large {
        padding: 10px 20px;
        font-size: 1em;
    }

    .section-title {
        font-size: 2.2em;
    }

    .service-grid, .equipment-grid {
        grid-template-columns: 1fr;
    }

    .contact-info, .contact-form-wrapper {
        padding: 30px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.4em;
    }
    .logo img {
        height: 40px;
    }
    body {
        padding-top: 70px;
    }
    .hero-section {
        height: 40vh;
        min-height: 250px;
    }
    /* WICHTIG: Selektor von .slide-content h2 zu .hero-text-slide h2 geändert */
    .hero-text-slide h2 {
        font-size: 1.5em;
    }
    /* WICHTIG: Selektor von .slide-content p zu .hero-text-slide p geändert */
    .hero-text-slide p {
        font-size: 0.8em;
        margin-bottom: 20px;
    }
    .btn {
        padding: 8px 15px;
        font-size: 0.8em;
    }
    .section-title {
        font-size: 1.8em;
    }
    .contact-info, .contact-form-wrapper {
        padding: 15px;
    }
    .map-container {
        height: 250px;
    }
}
/* Calendly Widget Integration */
.calendly-inline-widget {
    background-color: var(--color-dark-bg) !important;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Beibehalten, um unnötige Scrollbalken am Div zu vermeiden */
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    
    /* ANPASSUNG HIER: Erhöhe die Höhe */
    height: 850px; /* Oder 900px, 950px, bis der interne Scrollbalken verschwindet */
}

/* Die anderen Stile bleiben unverändert */
.calendly-inline-widget .calendly-text,
.calendly-inline-widget .calendly-button {
    font-family: 'Roboto', sans-serif;
    color: var(--color-text-light);
}

.calendly-inline-widget .calendly-button {
    background-color: var(--color-primary-accent);
    color: var(--color-dark-bg);
    border-radius: 5px;
    padding: 10px 20px;
    transition: background-color var(--transition-speed);
}

.calendly-inline-widget .calendly-button:hover {
    background-color: #ffd700;
}
.equipment-grid-calendly {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.equipment-item-calendly {
    background-color: var(--color-primary-accent);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);

    max-width: 100%;
    max-height: 200px;
    padding: 32px 24px;
    box-sizing: border-box;
}
