:root {
    --primary: #0a2540;
    --accent: #c5a059;
    --light: #f6f9fc;
    --text: #333;
}

* { box-sizing: border-box; }

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.4rem; font-weight: bold; color: var(--primary); }
.logo span { color: var(--accent); }

nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
nav a { text-decoration: none; color: var(--primary); font-weight: 600; }

/* Hero Sektion */
.hero {
    background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.7)), url('hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; }

.btn {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover { background: #b08d4a; }

/* Formular */
.form-section { padding: 80px 0; background: var(--light); }
.section-title { text-align: center; margin-bottom: 40px; }

form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: grid;
    gap: 20px;
}

.form-row { display: flex; gap: 20px; }
input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.file-upload {
    padding: 20px;
    border: 2px dashed #ddd;
    background: #fafafa;
    text-align: center;
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

/* Über uns Sektion */
.about-section { padding: 80px 0; }
.about-flex { display: flex; align-items: center; gap: 60px; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-text { flex: 1; }

.badge { color: var(--accent); text-transform: uppercase; font-weight: 700; font-size: 0.85rem; }
.partner-box { background: var(--light); border-left: 5px solid var(--accent); padding: 20px; margin: 25px 0; }
.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 8px; font-weight: 600; color: var(--primary); }

/* Footer */
footer { background: var(--primary); color: #ccc; padding: 50px 0; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .form-row { flex-direction: column; }
    .about-flex { flex-direction: column; }
    .hero h1 { font-size: 2rem; }
}