        /* Grundlegende Styles */
        :root {
            --primary-color: #005b9f;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #7f8c8d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: #ffcd58;
            transition: color 0.3s;
        }
        
        a:hover {
            color: var(--secondary-color);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            padding-bottom: 50px;
    padding-top: 30px;
        }
        
        /* Header Styles */
        header {
            background-color: #000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo img {
            height: 60px;
            width: auto;

        }
        
        /* Navigation */
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        
        .main-nav li {
            margin-left: 20px;
        }
        
        .main-nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        .main-nav a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 91, 159, 0.8);
            color: white;
            padding: 30px;
            max-width: 600px;
        }
        
        .slide-content h1 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .slide-content p {
            margin-bottom: 20px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #e67e22;
            color: white;
        }
        
        /* Main Content */
        main {
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--light-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #bdc3c7;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .mobile-menu-toggle {
                display: block;
                margin: 15px auto;
            }
            
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            
            .main-nav ul.show {
                display: flex;
            }
            
            .main-nav li {
                margin: 10px 0;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .slide-content {
                max-width: 100%;
            }
            
            .slide-content h1 {
                font-size: 1.5rem;
            }
        }


        /* Unterweisungsseite */
.unterweisung-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.unterweisung-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 30px 0 60px;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Inhaltsabschnitte */
.content-section {
    padding: 60px 0;
}

.gray-bg {
    background-color: #f8f9fa;
}

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

/* Zwei-Spalten-Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Service-Karten */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
}

/* Rechtliche Grundlagen */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.legal-card {
    background: white;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

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

/* Prozess-Schritte */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

/* CTA-Bereich */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Anpassungen */
@media (max-width: 900px) {
    .unterweisung-hero {
        flex-direction: column;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}
/* Leistungsseite spezifische Styles */
.leistungen-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.leistungen-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content .lead {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: rotate(0) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Leistungsgrid */
.leistungs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.leistung-card {
    padding: 40px 30px;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.leistung-card:hover {
    transform: translateY(-10px);
}

.leistung-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.leistung-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.leistung-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.leistung-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.leistung-card ul {
    margin: 25px 0;
    padding-left: 20px;
}

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

.leistung-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: rgba(255,255,255,0.8);
}

.leistung-card a {
    display: inline-block;
    margin-top: 20px;
   color: orange;
    font-weight: bold;

}

.leistung-card a:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Farben */
.bg-blue {
    background: linear-gradient(135deg, #005b9f 0%, #003366 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.bg-green {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
}

.bg-purple {
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
}

/* Statistik */
.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 60px 0 30px;
    text-align: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* Zusätzliche Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

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

/* CTA-Bereich */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #005b9f 0%, #003366 100%);
    color: white;
    border-radius: 12px;
    margin: 80px 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.cta-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.cta-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button.white {
    background: white;
    color: var(--primary-color);
}

.cta-button.white:hover {
    background: rgba(255,255,255,0.9);
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .leistungen-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .leistungs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}
.bg-teal {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.bg-red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Anpassung für 3 Spalten */
@media (min-width: 1200px) {
    .leistungs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Schulungsseite spezifische Styles */
.schulungen-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.schulungen-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
}

.schulungen-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.1;
}

.schulungen-hero .lead {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Schulungsgrid */
.schulungs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.schulung-card {
    padding: 40px 30px;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.schulung-card:hover {
    transform: translateY(-10px);
}

.schulung-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.schulung-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.schulung-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.schulung-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.schulung-card ul {
    margin: 25px 0;
    padding-left: 20px;
}

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

.schulung-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: rgba(255,255,255,0.8);
}

/* Schulungsdetails */
.schulungs-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Zertifikate */
.zertifikate {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.zertifikate img {
    height: 80px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.zertifikate img:hover {
    opacity: 1;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .schulungen-hero {
        flex-direction: column;
    }
    
    .schulungen-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .schulungen-hero h1 {
        font-size: 2rem;
    }
    
    .schulung-card {
        padding: 30px 20px;
    }
    
    .zertifikate {
        gap: 20px;
    }
    
    .zertifikate img {
        height: 60px;
    }
}
/* Beratungsseite spezifische Styles */
.beratung-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.beratung-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.beratung-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.beratung-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Beratungsgrid */
.beratungs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.beratung-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.beratung-card:hover {
    transform: translateY(-5px);
}

.beratung-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.beratung-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.beratung-card ul {
    margin: 25px 0;
    padding-left: 20px;
}

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

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

/* Prozessschritte */
.prozess-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.prozess-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

/* Fachgebiete */
.fachgebiete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.fachgebiet h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.fachgebiet ul {
    margin-top: 15px;
}

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

.fachgebiet li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
}

/* Kundenstimmen */
.kundenstimmen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.stimme-content p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.stimme-content p:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(0,91,159,0.1);
    z-index: 0;
}

.stimme-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.stimme-author strong {
    display: block;
    color: var(--primary-color);
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .beratung-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .beratung-hero h1 {
        font-size: 2.2rem;
    }
    
    .beratungs-grid {
        grid-template-columns: 1fr;
    }
    
    .prozess-steps {
        grid-template-columns: 1fr;
    }
}
/* Gefährdungsbeurteilungsseite spezifische Styles */
.gefaehrdungsbeurteilung-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.gb-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.gb-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.gb-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Prozessschritte */
.prozess-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.prozess-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.step-content ul {
    margin-top: 10px;
}

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

.step-content li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Gefährdungsgrid */
.gefaehrdungs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gefaehrdung-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.gefaehrdung-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.gefaehrdung-card ul {
    margin-top: 15px;
}

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

.gefaehrdung-card li:before {
    content: '-';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
}

/* Dokumentation */
.dokumentation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.doku-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .gb-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .prozess-step {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .gb-hero h1 {
        font-size: 2.2rem;
    }
    
    .dokumentation-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* Notfallkonzept-Seite spezifische Styles */
.notfallkonzepte-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.notfall-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.notfall-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.notfall-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Notfall-Grid */
.notfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.notfall-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.notfall-card:hover {
    transform: translateY(-5px);
}

.notfall-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.notfall-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.notfall-card ul {
    margin-top: 15px;
}

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

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

/* Rechtliche Grundlagen */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.legal-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.legal-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Prozessschritte */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .notfall-hero {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .notfall-hero h1 {
        font-size: 2.2rem;
    }
    
    .notfall-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
/* PSA-Seite spezifische Styles */
.psa-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.psa-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.psa-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.psa-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Kategorien */
.psa-kategorien {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.kategorie-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.kategorie-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.kategorie-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.kategorie-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Leistungen Grid */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.leistung-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.leistung-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leistung-card ul {
    margin-top: 15px;
}

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

.leistung-card li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .psa-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .psa-hero h1 {
        font-size: 2.2rem;
    }
    
    .psa-kategorien, .leistungen-grid {
        grid-template-columns: 1fr;
    }
}
/* Ersthelfer-Seite spezifische Styles */
.ersthelfer-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.ersthelfer-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.ersthelfer-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.ersthelfer-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.zertifizierung-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-usp {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,91,159,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.usp-icon {
    font-size: 1.2rem;
}

.bildnachweis {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 10px;
    text-align: right;
}

/* Kurs-Tabs */
.kurs-tabs {
    margin-top: 60px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-link {
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-light);
    position: relative;
}

.tab-link.active {
    color: var(--primary-color);
}

.tab-link.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tab-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tab-text p {
    margin-bottom: 20px;
}

.preis {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 25px 0;
}

.tab-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Akkordeon */
.accordion {
    margin-top: 40px;
}

.accordion-btn {
    background: white;
    color: var(--primary-color);
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn:after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-btn.active:after {
    content: '-';
}

.accordion-panel {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-panel ul {
    padding: 20px 0 20px 20px;
}

.accordion-panel li {
    margin-bottom: 10px;
}

/* Praxis-Slider */
.praxis-slider {
    margin: 60px 0 30px;
    position: relative;
}

.slider-item {
    display: none;
    animation: fade 0.5s ease;
}

.slider-item.active {
    display: block;
}

.slider-item img {
    width: 100%;
    border-radius: 8px;
    height: 400px;
    object-fit: cover;
}

.slider-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
}

.slider-nav {
    text-align: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary-color);
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Zertifizierung */
.zertifizierung-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.zert-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.zert-hinweis {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

/* Buchungsoptionen */
.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    color: black;
}

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

.booking-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.next-dates {
    margin: 20px 0;
}

.date-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.date {
    font-weight: bold;
}

.time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.seats {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-style: italic;
}

.booking-features {
    margin: 20px 0;
}

.feature {
    display: block;
    margin-bottom: 10px;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .ersthelfer-hero {
        flex-direction: column;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
    }
    
    .zertifizierung-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ersthelfer-hero h1 {
        font-size: 2.2rem;
    }
    
    .tab-header {
        flex-direction: column;
    }
    
    .tab-link {
        border-bottom: 1px solid #eee;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}
/* Brandschutzhelfer-Seite spezifische Styles */
.brandschutzhelfer-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.brandschutz-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.brandschutz-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.brandschutz-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-hinweis {
    margin: 25px 0;
    font-style: italic;
}

.partner-hinweis a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

/* Inhalte Grid */
.inhalte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.inhalt-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #e74c3c;
}

.inhalt-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.inhalt-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.inhalt-card ul {
    margin-top: 15px;
}

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

.inhalt-card li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #e74c3c;
}

.partner-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

/* Rechtliche Grundlagen */
.rechts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.rechts-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

/* Ablauf */
.ablauf-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ablauf-step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Anzahl Box */
.anzahl-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.anzahl-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.rechner-link {
    margin-top: 40px;
    text-align: center;
    font-size: 1.1rem;
}

.rechner-link a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Buchungsoptionen */
.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.booking-card h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.preis {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 20px 0;
}

/* Partnerhinweis */
.partner-hinweis-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.partner-hinweis-box a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .brandschutz-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .brandschutz-hero h1 {
        font-size: 2.2rem;
    }
    
    .ablauf-steps {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}
/* Staplerfahrer-Seite spezifische Styles */
.staplerfahrer-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.stapler-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.stapler-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.stapler-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Inhalte Grid */
.inhalte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.inhalt-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #3498db;
}

.inhalt-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3498db;
}

.inhalt-card h3 {
    color: #3498db;
    margin-bottom: 15px;
}

/* Zielgruppen Grid */
.zielgruppen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.zielgruppe-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
}

.zielgruppe-card h3 {
    color: #3498db;
    margin-bottom: 15px;
}

/* Partner-Boxen */
.partner-box, .partner-hinweis-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #3498db;
}

.partner-box a, .partner-hinweis-box a {
    color: #3498db;
    font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .stapler-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .stapler-hero h1 {
        font-size: 2.2rem;
    }
    
    .zielgruppen-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}

/* Farbliche Anpassungen für Stapler-Thematik */
.staplerfahrer-page .inhalt-card,
.staplerfahrer-page .zielgruppe-card {
    border-color: #3498db;
}

.staplerfahrer-page .inhalt-card h3,
.staplerfahrer-page .zielgruppe-card h3,
.staplerfahrer-page .inhalt-icon {
    color: #3498db;
}

/* Besondere Hervorhebungen für gewerbliche Kunden */
.gewerblich-highlight {
    background-color: #e3f2fd;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: bold;
}
/* Höhenarbeit-Seite spezifische Styles */
.hoehenarbeit-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.hoehenarbeit-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px 0 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.hoehenarbeit-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hoehenarbeit-hero .lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Farbliches Konzept für Höhenarbeit */
.hoehenarbeit-page .inhalt-card,
.hoehenarbeit-page .zielgruppe-card {
    border-color: #e67e22;
}

.hoehenarbeit-page .inhalt-card h3,
.hoehenarbeit-page .zielgruppe-card h3,
.hoehenarbeit-page .inhalt-icon {
    color: #e67e22;
}

/* Cross-Link Box */
.cross-link-box {
    background: #fdf2e9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #e67e22;
}

.cross-link {
    color: #e67e22;
    font-weight: bold;
    text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 1000px) {
    .hoehenarbeit-hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hoehenarbeit-hero h1 {
        font-size: 2.2rem;
    }
    
    .zielgruppen-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}
/* Kontaktformular-Styles */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.confirmation-section {
    text-align: center;
    padding: 60px 20px;
}

.confirmation-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-details {
    text-align: left;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-form-section {
    margin: 60px 0;
}

.schulungs-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.datenschutz {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.datenschutz a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}
/* SEO-Text Styling */
.form-intro-text {
    margin-bottom: 40px;
}

.seo-text {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.seo-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.seo-text h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

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

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

.seo-text li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Vorteile Grid */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.vorteil-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-top: 3px solid var(--primary-color);
}

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

@media (max-width: 600px) {
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-text {
        padding: 20px 15px;
    }
}
/* Datenschutz-Seite Styles */
.datenschutz-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.last-update {
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.content-section h3 {
    margin: 25px 0 15px;
    color: #333;
}

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

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

.content-section li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

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

@media (max-width: 600px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        margin-bottom: 30px;
    }
}
    .obfuscated {
        position: relative;
    }
    .obfuscated::after {
        content: attr(data-content);
    }
    .obfuscated::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.0001);
        z-index: 1;
    }
    /* Impressum-Seite Styles */
.impressum-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-notice {
    color: #666;
    font-style: italic;
}

.contact-data-image {
    margin: 30px 0;
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

.additional-info {
    margin-top: 40px;
}

.additional-info h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 600px) {
    .contact-data-image {
        padding: 15px;
    }
}