/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #000000;
    --accent-hover: #1a1a1a;
    --accent-light: #4a4a4a;
    --text-color: #000000;
    --text-light: #666666;
    --bg-color: #ffffff;
    --light-bg: #ffffff;
    --light-bg-alt: #fafafa;
    --yellow-bg: #fffeb8;
    --yellow-light: #fffeb8;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 5rem;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;
    --font-size-xxxl: 48px;
    --line-height: 1.6;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
.header {
    background: var(--yellow-bg);
    color: var(--primary-color);
    padding: var(--spacing-md) 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.claim {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
    background: var(--yellow-bg);
    color: var(--primary-color);
    padding: var(--spacing-xl) 0 var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-stoerer {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 3;
    background: #ffeb3b;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-4deg);
    animation: pulseStoerer 2s ease-in-out infinite;
}

@keyframes pulseStoerer {
    0%, 100% {
        transform: rotate(-4deg) scale(1);
    }
    50% {
        transform: rotate(-4deg) scale(1.05);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: calc(var(--spacing-xxl) + 5rem);
    padding-bottom: calc(var(--spacing-lg) + 100px);
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
    display: block;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-title:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.05);
}

.hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    font-weight: 800;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-transform: uppercase;
    gap: 0.25rem;
}

.stoerer-line {
    display: block;
    white-space: nowrap;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
    color: #ffffff;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: 0 auto var(--spacing-md);
}

.hero-buttons .btn {
    width: 100%;
}

.hero-hint {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--border-radius-lg);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    bottom: calc(var(--spacing-md) + 5rem);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--spacing-md) * 2);
    max-width: 700px;
    z-index: 3;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.hero-hint a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 0 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.hero-hint a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.25rem;
    right: 0.25rem;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-hint a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.hero-hint a:hover::after {
    transform: scaleX(1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.scroll-arrow {
    font-size: 2rem;
    color: #ffffff;
    line-height: 1;
    animation: bounceArrow 2s infinite;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
}

.scroll-arrow:hover {
    opacity: 0.8;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: var(--spacing-xs);
}

.section-intro,
.section-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    line-height: 1.8;
    color: var(--text-light);
}

/* Initiative Box Section */
.initiative-box-section {
    background: white;
    padding: var(--spacing-md) 0;
    position: relative;
}

.initiative-box-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.initiative-box-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.initiative-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.initiative-box-text {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.initiative-box-logo-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.initiative-box-logo-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.initiative-box-logo {
    height: 28px;
    width: auto;
    display: block;
}

.initiative-box-link {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.initiative-box-link:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/* News Section */
.news {
    background: var(--bg-color);
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xxl);
    max-width: 1400px;
    margin: var(--spacing-lg) auto 0;
}

.news-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.news-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-bg-alt);
    flex-shrink: 0;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.news-item:hover .news-image {
    transform: scale(1.1);
}

.news-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: var(--spacing-md);
    background: white;
    text-align: center;
}

.news-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    text-align: center;
}

.news-preview {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
    font-weight: 400;
    text-align: center;
}

/* Routine Section */
.routine {
    background: var(--bg-color);
    position: relative;
}

.routine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.check-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto var(--spacing-md);
}

.check-step {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: var(--spacing-xl) var(--spacing-sm);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.check-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #333333 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}


.step-icon {
    margin: var(--spacing-md) auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
}

.step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.step-number {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #ffeb3b;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1;
}


.check-step h3 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-align: center;
    min-height: 2.5em;
}

.check-step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    flex-grow: 1;
    display: flex;
    align-items:flex-start;
    justify-content: center;
}

.check-note {
    text-align: center;
    color: var(--primary-color);
    max-width: 1100px;
    margin: var(--spacing-xxl) auto 0;
    padding: var(--spacing-xxl) var(--spacing-xl) var(--spacing-xxl) calc(var(--spacing-xl) + 2rem);
    background: #ffeb3b;
    border-radius: var(--border-radius-xl);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    line-height: 1.6;
    font-weight: 700;
    border: 3px solid var(--primary-color);
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.check-note:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.check-note::before {
    content: '"';
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: 'Barlow', sans-serif;
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
    transform: translateY(-0.5rem);
}

.check-note::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .check-note {
        padding: var(--spacing-xxl) calc(var(--spacing-xxl) + var(--spacing-md)) var(--spacing-xxl) calc(var(--spacing-xxl) + 3rem);
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        transform: rotate(-0.75deg);
    }
    
    .check-note::before {
        font-size: 8rem;
        top: var(--spacing-lg);
        left: var(--spacing-lg);
    }
    
    .check-note:hover {
        transform: rotate(0deg) scale(1.02);
    }
}

/* Toolkit Section */
.toolkit {
    background: var(--bg-color);
}

.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    text-decoration: none;
    color: var(--text-color);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 70px;
}

.download-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.download-icon {
    font-size: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    line-height: 1;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.download-item:hover .download-icon {
    transform: scale(1.1);
}

.download-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.download-item h3 {
    font-family: 'Barlow', sans-serif;
    font-size: var(--font-size-base);
    margin: 0;
    color: var(--primary-color);
    font-weight: 800;
    text-align: left;
}

.download-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.download-all {
    text-align: center;
    margin: var(--spacing-lg) 0;
    padding-top: var(--spacing-md);
    position: relative;
}

.download-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.toolkit-hint {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-style: italic;
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    padding: var(--spacing-sm);
    background: var(--yellow-light);
    border-radius: var(--border-radius);
}

/* Betreiber Section */
.betreiber {
    background: var(--yellow-bg);
    text-align: center;
    position: relative;
}

.betreiber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Notfall Section */
.notfall-numbers {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: var(--spacing-md) auto 0;
}

.notfall-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #333333 0%, var(--primary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    gap: 0.25rem;
}

.notfall-number-value {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    display: block;
}

.notfall-number-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    line-height: 1.3;
    display: block;
    opacity: 0.95;
}

.notfall-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.notfall-number:hover::before {
    width: 300px;
    height: 300px;
}

.notfall-number:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* Partner Section */
.partner {
    background: var(--yellow-bg);
    text-align: center;
    position: relative;
}

.partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Kontakt Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    background-color: var(--yellow-light);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-info {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--yellow-bg);
    border-radius: var(--border-radius-lg);
    border-top: 3px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    margin-top: var(--spacing-xl);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.footer-text a {
    color: white;
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: var(--font-size-sm);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer Initiative */
.footer-initiative {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.initiative-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.initiative-logo-link {
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.initiative-logo-link:hover {
    opacity: 1;
}

.initiative-logo {
    height: 30px;
    width: auto;
    display: block;
}

.initiative-link {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.initiative-link:hover {
    opacity: 1;
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero {
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .check-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-video-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    }
    
    .hero-stoerer {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .hero-hint {
        bottom: calc(var(--spacing-sm) + 4.5rem);
        width: calc(100% - var(--spacing-sm) * 2);
        padding: var(--spacing-sm);
        font-size: clamp(0.75rem, 2vw, 0.875rem);
        white-space: normal;
    }
    
    .scroll-indicator {
        bottom: var(--spacing-sm);
    }
    
    .hero .container {
        padding-bottom: calc(var(--spacing-lg) + 100px);
    }
    
    .check-steps {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .check-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xxl);
    }

    .notfall-numbers {
        flex-direction: row;
        max-width: 600px;
    }

    .notfall-number {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
}

/* Success/Error Messages */
.form-message {
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid var(--success-color);
    box-shadow: var(--shadow);
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid var(--error-color);
    box-shadow: var(--shadow);
}

