* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #2d7ac7;
    --accent-color: #ff6b35;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.main-nav {
    background: var(--bg-white);
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 2.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content-left {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ac7 100%);
    color: var(--bg-white);
}

.hero-content-left h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image-right {
    min-height: 400px;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
}

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

.intro-split-reverse {
    display: flex;
    flex-direction: column;
}

.intro-image-left {
    order: 1;
}

.intro-image-left img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.intro-content-right {
    order: 2;
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.intro-content-right h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats-section {
    background: var(--primary-color);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.features-split {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.feature-content-left {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.feature-content-left h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-image-right img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.services-preview {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-bottom-color: var(--primary-color);
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
}

.testimonial-content-left {
    padding: 3rem 2rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-image-right img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.cta-split-form {
    display: flex;
    flex-direction: column;
}

.cta-text-left {
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-text-left h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.cta-text-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    opacity: 0.95;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.form-container-right {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.inquiry-form {
    max-width: 550px;
    margin: 0 auto;
}

.inquiry-form h3 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e55a2a;
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    flex-direction: column;
}

.final-image-left img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.final-content-right {
    padding: 3rem 2rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-content-right h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.final-content-right p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.cta-large:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.main-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: #218838;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid #666;
}

.cookie-btn.reject:hover {
    border-color: var(--bg-white);
}

.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 50vh;
}

.hero-text-left {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ac7 100%);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-left h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-left p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.mission-split {
    display: flex;
    flex-direction: column;
}

.mission-image-left img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.mission-content-right {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.mission-content-right h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.history-split-reverse {
    display: flex;
    flex-direction: column;
}

.history-content-left {
    order: 2;
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.history-content-left h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.history-content-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.history-image-right {
    order: 1;
}

.history-image-right img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.team-intro-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.team-image-left img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.team-content-right {
    padding: 3rem 2rem;
}

.team-content-right h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section-centered {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.services-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ac7 100%);
    color: var(--bg-white);
    text-align: center;
}

.services-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
}

.service-info-left {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-info-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-highlights {
    margin-bottom: 2rem;
}

.service-highlights h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-highlights ul {
    list-style: none;
}

.service-highlights ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.service-highlights ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-details p {
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.price-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-visual-right img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.service-detail-split-reverse {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
}

.service-visual-left {
    order: 1;
}

.service-visual-left img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.service-info-right {
    order: 2;
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.service-info-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.anmeldung-section {
    padding: 0;
    background: var(--bg-white);
}

.anmeldung-split {
    display: flex;
    flex-direction: column;
}

.anmeldung-info-left {
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.anmeldung-info-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.anmeldung-info-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.benefits-box {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.benefits-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefits-box ul {
    list-style: none;
}

.benefits-box ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.benefits-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.anmeldung-form-right {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.contact-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 50vh;
}

.contact-text-left {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ac7 100%);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text-left h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-text-left p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.contact-grid-split {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details-left {
    padding: 2rem 0;
}

.contact-details-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder-right {
    margin-top: 2rem;
    position: relative;
}

.map-placeholder-right img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--bg-white);
    padding: 1rem;
    border-radius: 6px;
}

.faq-split-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--bg-light);
}

.faq-image-left img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
}

.faq-content-right {
    padding: 3rem 2rem;
}

.faq-content-right h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.thanks-resources h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.resource-card a:hover {
    border-bottom-color: var(--primary-color);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.legal-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-back-link a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-content-left {
        flex: 1;
        padding: 4rem;
    }

    .hero-content-left h1 {
        font-size: 3rem;
    }

    .hero-image-right {
        flex: 1;
        min-height: auto;
    }

    .intro-split-reverse {
        flex-direction: row;
    }

    .intro-image-left {
        flex: 1;
        order: 1;
    }

    .intro-content-right {
        flex: 1;
        order: 2;
        padding: 4rem;
    }

    .stats-container {
        flex-direction: row;
        justify-content: space-around;
    }

    .features-split {
        flex-direction: row;
    }

    .feature-content-left {
        flex: 1;
        padding: 4rem;
    }

    .feature-image-right {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

    .testimonial-split {
        flex-direction: row;
    }

    .testimonial-content-left {
        flex: 1;
        padding: 4rem;
    }

    .testimonial-image-right {
        flex: 1;
    }

    .cta-split-form {
        flex-direction: row;
    }

    .cta-text-left {
        flex: 1;
        padding: 4rem;
    }

    .form-container-right {
        flex: 1;
        padding: 4rem;
    }

    .final-cta-split {
        flex-direction: row;
    }

    .final-image-left {
        flex: 1;
    }

    .final-content-right {
        flex: 1;
        padding: 4rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
        margin-right: 2rem;
    }

    .page-hero-split {
        flex-direction: row;
        min-height: 60vh;
    }

    .hero-text-left {
        flex: 1;
        padding: 4rem;
    }

    .hero-visual-right {
        flex: 1;
    }

    .mission-split {
        flex-direction: row;
    }

    .mission-image-left {
        flex: 1;
    }

    .mission-content-right {
        flex: 1;
        padding: 4rem;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .history-split-reverse {
        flex-direction: row;
    }

    .history-content-left {
        flex: 1;
        order: 1;
        padding: 4rem;
    }

    .history-image-right {
        flex: 1;
        order: 2;
    }

    .team-intro-split {
        flex-direction: row;
    }

    .team-image-left {
        flex: 1;
    }

    .team-content-right {
        flex: 1;
        padding: 4rem;
    }

    .service-detail-split {
        flex-direction: row;
        margin-bottom: 4rem;
    }

    .service-info-left {
        flex: 1;
        padding: 4rem;
    }

    .service-visual-right {
        flex: 1;
    }

    .service-detail-split-reverse {
        flex-direction: row;
        margin-bottom: 4rem;
    }

    .service-visual-left {
        flex: 1;
        order: 1;
    }

    .service-info-right {
        flex: 1;
        order: 2;
        padding: 4rem;
    }

    .anmeldung-split {
        flex-direction: row;
    }

    .anmeldung-info-left {
        flex: 1;
        padding: 4rem;
    }

    .anmeldung-form-right {
        flex: 1;
        padding: 4rem;
    }

    .contact-hero-split {
        flex-direction: row;
    }

    .contact-text-left {
        flex: 1;
        padding: 4rem;
    }

    .contact-visual-right {
        flex: 1;
    }

    .contact-grid-split {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-details-left {
        flex: 1;
        padding: 0;
    }

    .map-placeholder-right {
        flex: 1;
        margin-top: 0;
    }

    .faq-split-section {
        flex-direction: row;
    }

    .faq-image-left {
        flex: 1;
    }

    .faq-content-right {
        flex: 1;
        padding: 4rem;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .resources-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content-left h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }
}