:root {
    --primary-color: #5e35b1;    /* Dunkleres Violett */
    --secondary-color: #3949ab;   /* Dunkles Blau */
    --accent-color: #b39ddb;      /* Helles Violett */
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --card-shadow: 0 10px 30px -5px rgba(94, 53, 177, 0.1);
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--light-bg);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(94, 53, 177, 0.97), rgba(57, 73, 171, 0.95)),
                url('https://i.imgur.com/V7gKCGe.jpeg') center/cover;
    color: white;
    padding: 10rem 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
    color: white;
}

.hero-section .lead {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Stats Banner */
.stats-banner {
    background: white;
    color: var(--text-color);
    padding: 3rem;
    margin-top: -5rem;
    margin-bottom: 5rem;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item strong {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item span {
    color: #666;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 8rem 0;
    background: white;
}

section:nth-child(even) {
    background: var(--light-bg);
}

/* Content Cards */
.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .content-card {
        padding: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .row.g-4 > [class*="col"] {
        margin-bottom: 1rem;
    }
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow), 0 10px 40px -10px rgba(94, 53, 177, 0.3);
}

.content-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.content-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #444;
}

.content-card ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.content-card ul li + li {
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Modern Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn i {
    font-size: 1.2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 5px 15px rgba(94, 53, 177, 0.2);
    color: white !important;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 53, 177, 0.3);
    opacity: 0.95;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0 2rem;
}

.footer a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0;
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stats-banner {
        margin-top: -3rem;
        padding: 2rem;
        border-radius: 20px;
    }
    
    .stat-item strong {
        font-size: 2.2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.9;
    flex-shrink: 0;
}

.benefit-card .benefit-content {
    flex-grow: 1;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

/* Emergency Stats Section */
.emergency-stats {
    padding: 4rem 0;
}

.emergency-stats .content-card {
    height: auto;
    margin-bottom: 0;
}

.emergency-stats h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

/* Mobile Optimierungen */
@media (max-width: 767px) {
    .emergency-stats {
        padding: 2rem 0;
    }

    .emergency-stats .row {
        margin: 0;
    }

    .emergency-stats .content-card {
        padding: 1.5rem;
        margin: 0.5rem 0;
        border-radius: 15px;
    }

    .emergency-stats h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .emergency-stats ul li {
        font-size: 0.95rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }

    .emergency-stats p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    /* Verbesserte Lesbarkeit auf kleinen Bildschirmen */
    .emergency-stats .content-card + .content-card {
        margin-top: 1rem;
    }
}

/* Allgemeine Card-Anpassungen */
.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow), 0 10px 40px -10px rgba(94, 53, 177, 0.3);
}

/* Überschriften Styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

/* Footer Überschriften bleiben weiß */
.footer h4 {
    color: white;
} 