/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.main-nav {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 0;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-item a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
    border-radius: 4px;
}

.nav-item a:hover {
    background: rgba(255,255,255,0.1);
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
}


.nav-item.dropdown.active .dropdown-menu {
    display: block;
}



.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 20px;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #D97706;
    color: white;
}

/* ==========================================
   MEGA-MENÜ MIT SUBMENÜS
   ========================================== */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 700px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 25px 30px;
    z-index: 1001;
}

.nav-item.dropdown.active .mega-menu {
    display: flex;
}

.mega-menu-columns {
    display: flex;
    gap: 30px;
    width: 100%;
}

.mega-menu-column {
    flex: 1;
    min-width: 180px;
}

.mega-menu-title {
    color: #D97706;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px 10px 10px;
    margin-bottom: 5px;
    border-bottom: 2px solid #e8f5e9;
    display: block;
}

.mega-menu-column a {
    color: #444;
    padding: 10px;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.mega-menu-column a:hover {
    background: #e8f5e9;
    color: #D97706;
    padding-left: 15px;
}

/* Mega-Menü Responsive */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 10px 0;
        background: #f8f9fa;
    }
    
    .mega-menu-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .mega-menu-column {
        min-width: 100%;
    }
    
    .mega-menu-title {
        padding: 10px 20px;
        margin-bottom: 0;
        background: #e8f5e9;
        border-bottom: none;
    }
    
    .mega-menu-column a {
        padding: 10px 30px;
    }
    
    .mega-menu-column a:hover {
        padding-left: 35px;
    }
}



/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    list-style: none;
    padding: 15px 20px;
    background: white;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #666;
}

.breadcrumb a {
    color: #D97706;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ==========================================
   HERO & PAGE HEADER
   ========================================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.95), rgba(0, 180, 216, 0.95)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2300B4D8" width="1200" height="600"/><path fill="%23fff" opacity="0.05" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

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

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-header {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: #D97706;
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-section h3 {
    color: #D97706;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.content-section h4 {
    color: #D97706;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    color: #D97706;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ==========================================
   SERVICES & CARDS
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon,
.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3,
.service-card h4 {
    color: #D97706;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* ==========================================
   INFOGRAPHICS & PROCESS STEPS
   ========================================== */

/* Scenarios Grid - für Situationen und Vorteile */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.scenario-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D97706, #48CAE4, #66BB6A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.1);
}

.scenario-card:hover::before {
    transform: scaleX(1);
}

.scenario-card .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.scenario-card h4 {
    color: #D97706;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.scenario-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
    text-align: center;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Process Steps - verbesserte Version */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #D97706;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.12);
}

.process-step .step-number {
    background: linear-gradient(135deg, #D97706 0%, #48CAE4 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    position: relative;
}

.process-step .step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #D97706;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.process-step .step-content h4 {
    color: #D97706;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.process-step .step-content p,
.process-step h3,
.process-step p {
    color: #555;
    line-height: 1.7;
    text-align: center;
    font-size: 0.98rem;
}

.process-step h3 {
    color: #D97706;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ==========================================
   SITUATIONS & FEATURES
   ========================================== */
.situations-section {
    padding: 60px 20px;
    background: white;
    margin: 60px 0;
    border-radius: 12px;
}

.situations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.situation-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.situation-item:hover {
    transform: translateX(5px);
}

.situation-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.situation-item h4 {
    color: #D97706;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.situation-item p {
    color: #666;
    font-size: 0.95rem;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #D97706;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.why-us-section {
    padding: 60px 20px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 6px solid #FF9800;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
}

.highlight-box h3 {
    color: #E65100;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-box strong {
    color: #E65100;
}

/* Reference Grid */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.reference-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #D97706;
    position: relative;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
}

.reference-card h3 {
    color: #D97706;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.reference-card .location {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
}

.reference-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.reference-card strong {
    color: #D97706;
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D97706, #48CAE4, #66BB6A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.value-card h3 {
    color: #D97706;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Emergency Box */
.emergency-box {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border-left: 6px solid #D32F2F;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.15);
}

.emergency-box h3 {
    color: #B71C1C;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emergency-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.emergency-box strong {
    color: #B71C1C;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.contact-info {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    color: #D97706;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    color: #D97706;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.contact-item a {
    color: #D97706;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #48CAE4;
    text-decoration: underline;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    padding: 80px 20px;
    margin: 60px 0;
    border-radius: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
}

.stats-grid > div {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stats-grid > div:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number,
.stats-grid > div .stat-number,
.stats-grid > div > span:first-child {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.stat-label,
.stats-grid > div > span:last-child {
    display: block;
    font-size: 1.15rem;
    opacity: 0.95;
    color: white;
    font-weight: 500;
}

/* Content Wrapper */
.content {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.content h3 {
    color: #D97706;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.content li {
    margin-bottom: 8px;
}

/* ==========================================
   CONTACT FORMS & CTA
   ========================================== */
.contact-form {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    color: #D97706;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D97706;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button,
.submit-btn {
    background: linear-gradient(135deg, #D97706 0%, #48CAE4 100%);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    width: 100%;
    margin-top: 10px;
}

.submit-button:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #66BB6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.submit-button:active,
.submit-btn:active {
    transform: translateY(0);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #D97706;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-section {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: white;
    color: #D97706;
}

.contact-cta {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

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

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-button {
    display: inline-block;
    background: white;
    color: #D97706;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-section h3 {
    color: #48CAE4;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #48CAE4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 950px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #D97706;
        flex-direction: column;
        display: none;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        padding: 15px 20px;
    }

.dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    margin: 5px 20px;
    border-radius: 8px;
}

.dropdown-menu a {
    color: white;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}


    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .scenarios-grid,
    .reference-grid,
    .values-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .content {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .process-step,
    .scenario-card,
    .reference-card,
    .value-card {
        padding: 25px 20px;
    }

    .process-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scenario-card .icon,
    .value-card .icon {
        font-size: 3rem;
    }

    .highlight-box,
    .emergency-box {
        padding: 20px;
    }

    .highlight-box h3,
    .emergency-box h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 20px 10px;
    }

    .stat-number,
    .stats-grid > div .stat-number,
    .stats-grid > div > span:first-child {
        font-size: 2.5rem;
    }

    .stat-label,
    .stats-grid > div > span:last-child {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item .icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number,
    .stats-grid > div .stat-number,
    .stats-grid > div > span:first-child {
        font-size: 2rem;
    }

    .scenario-card h4,
    .reference-card h3,
    .value-card h3 {
        font-size: 1.1rem;
    }

    .scenario-card .icon,
    .value-card .icon {
        font-size: 2.5rem;
    }

    .process-step .step-content h4 {
        font-size: 1.1rem;
    }

    .submit-button,
    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
/* ==========================================
   FAQ SECTION - SEO OPTIMIZED
   ========================================== */
.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 25px 60px 25px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #D97706;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    position: absolute;
    right: 25px;
    font-size: 1.8rem;
    font-weight: 300;
    color: #D97706;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

/* Mobile Responsiveness */
@media (max-width: 950px) {
    .faq-section {
        margin: 50px auto;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px 50px 20px 20px;
    }
    
    .faq-icon {
        right: 20px;
        font-size: 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* SEO Breadcrumb Enhancement */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #f8f9fa;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: #666;
}

.breadcrumb li a {
    color: #D97706;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: #1B5E20;
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #999;
}

/* Schema Markup Enhancements */
.service-card,
.feature-item,
.situation-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Accessibility Improvements */
.faq-question:focus,
.contact-button:focus,
.cta-button:focus {
    outline: 3px solid #48CAE4;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .main-nav,
    .contact-cta,
    .burger,
    footer {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    body {
        background: white;
    }
}


/* ==========================================
   STEPS GRID
   ========================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step-item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.step-item h3 {
    color: #D97706;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   NOTICE SECTION
   ========================================== */
.notice-section {
    margin: 50px 0;
}

.notice-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.notice-box h3 {
    color: #856404;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.notice-box p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 10px;
}

.notice-box a {
    color: #D97706;
    text-decoration: none;
    font-weight: bold;
}

.notice-box a:hover {
    text-decoration: underline;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section {
    background: linear-gradient(135deg, #e3f2fd, #b3e5fc);
    padding: 60px 20px;
    margin: 50px -20px;
    border-radius: 12px;
}

.why-section .section-title {
    color: #D97706;
}

/* ==========================================
   TEST PAGE STYLES
   ========================================== */

/* Test Section */
.test-section {
    max-width: 900px;
    margin: 0 auto;
}

.test-question {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 4px solid #D97706;
}

.test-question h3 {
    color: #D97706;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.question-hint {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 10px 0 20px 0;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
}

.test-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.test-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.test-option:hover {
    border-color: #D97706;
    background: #f0f8ff;
}

.test-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #D97706;
}

.test-option span {
    font-size: 1.05rem;
    color: #333;
}

.test-option input[type="radio"]:checked ~ span {
    font-weight: 600;
    color: #D97706;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    display: block;
    margin: 40px auto 0;
    min-width: 250px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Result Section */
.result-section {
    max-width: 900px;
    margin: 40px auto;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-score {
    text-align: center;
    margin: 40px 0;
}

.score-circle {
    display: inline-block;
    width: 200px;
    height: 200px;
    border: 8px solid;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: white;
}

.score-number {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.score-total {
    font-size: 2rem;
    opacity: 0.6;
}

.score-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 600;
}

/* Result Category */
.result-category {
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.result-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.result-category h3 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

/* Result Description */
.result-description {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.result-description h4 {
    color: #D97706;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.result-description ul {
    margin-left: 25px;
    line-height: 1.8;
}

.result-description li {
    margin-bottom: 10px;
}

.result-description strong {
    color: #D97706;
}

/* Warning Boxes */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.danger-box {
    background: #ffebee;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.help-now-box {
    background: #e3f2fd;
    border-left: 4px solid #D97706;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.help-now-box h4 {
    color: #D97706;
    margin-top: 0;
}

.help-now-box a {
    color: #D97706;
    font-weight: bold;
    text-decoration: none;
}

.help-now-box a:hover {
    text-decoration: underline;
}

/* Result Disclaimer */
.result-disclaimer {
    background: #fff9e6;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.result-disclaimer p {
    margin: 0;
    color: #856404;
}

/* Result Actions */
.result-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.secondary-button {
    background: white;
    color: #D97706;
    border: 2px solid #D97706;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

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

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e3f2fd, #b3e5fc);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.info-box h3 {
    color: #D97706;
    margin: 10px 0;
    font-size: 1.2rem;
}

/* Help Section */
.help-section {
    background: #f8f9fa;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.help-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #D97706;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.help-card h3 {
    color: #D97706;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.help-card p {
    margin: 10px 0;
    line-height: 1.6;
}

.help-card a {
    color: #D97706;
    text-decoration: none;
    font-weight: 600;
}

.help-card a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 950px) {
    .test-question {
        padding: 20px;
    }
    
    .test-option {
        padding: 12px 15px;
    }
    
    .score-circle {
        width: 160px;
        height: 160px;
    }
    
    .score-number {
        font-size: 3rem;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   ADDITIONAL RESULT BOX STYLES
   ========================================== */

.success-box {
    background: #d4edda;
    border-left: 4px solid #059669;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.success-box p {
    color: #155724;
    margin: 0;
}

.success-box strong {
    color: #059669;
}

/* ==========================================
   TEST INFO SECTION
   ========================================== */

.test-info {
    margin: 40px 0;
}

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

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: #D97706;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* ==========================================
   QUESTION CARDS
   ========================================== */

.question-card {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.question-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.question-text {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==========================================
   ANSWER OPTIONS
   ========================================== */

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.answer-option:hover {
    border-color: #D97706;
    background: #f0f8ff;
}

.answer-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #D97706;
}

.answer-option:has(input[type="radio"]:checked) {
    background: #e3f2fd;
    border-color: #D97706;
    font-weight: 500;
}

.answer-option span {
    font-size: 1.05rem;
    color: #333;
}

/* ==========================================
   MOBILE RESPONSIVE - TEST PAGES
   ========================================== */

@media (max-width: 950px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .question-card {
        padding: 20px;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .answer-option {
        padding: 12px 15px;
    }
    
    .answer-option span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0D47A1;        /* sehr hoher Kontrast */
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.footer-bottom a::after {
    content: "→";               /* Pfeil */
    font-size: 1.05em;
    margin-left: 4px;
}

.footer-bottom a:hover {
    background: #1565C0;        /* heller zum Hover */
    transform: translateX(2px);
}
