/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    scroll-padding-top: 100px; /* Verhindert, dass der Header Inhalte verdeckt */
}

/* Allgemeine Überschriften-Styles - am Anfang der Datei nach den Grundeinstellungen */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #2c2c2c;
    text-shadow: none;
}

h2 {
    font-size: 2.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #2c2c2c;
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Scrolled State mit etwas mehr Deckkraft */
.header.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    transition: padding 0.3s ease;
}

.header.scrolled .header-container {
    padding: 0.4rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .logo img {
    height: 55px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease-in-out;
}

nav a:hover {
    color: #000000;
}

nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    margin-top: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Basis-Styles */
.hero {
    padding-top: 104px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
    ),
    url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    border-radius: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero p {
    font-size: 1.5rem;  /* Kleiner als zuvor */
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.4rem 3.2rem;  /* Größerer Button */
    background: linear-gradient(135deg, #000000, #000000);
    color: #ffffff;  /* Schwarze Schrift für besseren Kontrast */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    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);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 400px;
    }
}

/* Mobile Anpassungen für Hero */
@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1.5rem;
    }

    nav ul {
        display: none; /* Später durch Hamburger-Menü ersetzen */
    }

    .hero {
        min-height: 100vh;
        height: 100vh; /* Exakte Bildschirmhöhe */
        padding: 0;
        background-attachment: scroll;
        position: relative; /* Für absolute Positionierung des Contents */
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 1rem;
        margin-top: 30px; /* Ausgleich für Header */
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .about-content {
        padding: 2.5rem;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .footer-container {
        padding: 3rem 1.5rem 2rem;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0.8rem 1rem;
    }

    .hero {
        min-height: 100vh; /* Volle Bildschirmhöhe */
        padding: 0 1rem; /* Kein vertikales Padding */
        display: flex;
        align-items: center; /* Vertikale Zentrierung */
    }

    .hero-content {
        width: 100%;
        padding-top: 80px; /* Platz für den Header */
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        width: 100%; /* Volle Breite auf Mobilgeräten */
    }

    .section {
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .about-content {
        padding: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .contact-container {
        padding: 0;
        width: 100%;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.2rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        margin-bottom: 0.8rem;
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }

    .contact-info {
        padding: 1.2rem;
        margin-bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .checkbox-group {
        margin: 0.5rem 0;
        gap: 0.5rem;
    }

    .checkbox-group label {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .submit-button {
        margin-top: 0.8rem;
    }

    .footer-container {
        padding: 2.5rem 1rem 1.5rem;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

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

    .about-content h3 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }

    .submit-button {
        width: 100%;
    }
}

/* Grundlegende Section Styles */
.section {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    margin: 0;
    background: #ffffff;
    clear: both;
}

/* Content innerhalb der Section */
.section-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #ffffff;
}

/* Erste Section nach dem Hero braucht Abstand wegen fixed Header */
.hero + .section .section-content {
    padding-top: 120px;
}

/* Bildergalerie Styles */
.slider-section {
    width: 100%;
    margin: 2rem 0;
    background: var(--color-background);
    padding: 0 15px;
}

.slider {
    width: 100%;
    height: auto;
    padding: 10px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.slide-track {
    display: flex;
    gap: 5px;
    width: 100%;
    justify-content: center;
    animation: none;
    transform: none;
}

.slide {
    width: 85px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .slider-section {
        padding: 0 2rem;
    }

    .slider {
        padding: 20px 0;
    }

    .slide-track {
        gap: 10px;
    }

    .slide {
        width: 300px;
        height: 300px;
        border-radius: 12px;
    }

    .slide img {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .slider-section {
        padding: 0 15px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #000000;
}

.services-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #000000);
    margin: 0 auto;
    border-radius: 2px;
}

/* Kontakt Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #2c2c2c;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.contact-info i {
    color: #000000;
    font-size: 1.2rem;
    width: 24px;
}

.contact-text {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

/* Checkbox Gruppe Optimierung */
.checkbox-group {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.submit-button {
    background: linear-gradient(135deg, #000000, #000000);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

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

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }
    
    .submit-button {
        width: 100%;
    }
}

/* About Styles */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-content {
    text-align: left;
    padding: 3.5rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    border-radius: inherit;
    z-index: -1;
}

.about-content h3 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #000000, #000000);
    border-radius: 2px;
}

.about-content p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.about-content strong {
    color: #000000;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Attributions-Link ausblenden (optional) */
.leaflet-control-attribution {
    display: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000000;
}

.social-links i {
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: #000000;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 1;
    color: #000000;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Header Socials */
.header-socials {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.header-socials a {
    color: #2c2c2c;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.header-socials a:hover {
    color: #000000;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .header-socials {
        margin-left: auto;
    }

    .logo img {
        height: 50px;
    }

    .header.scrolled .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-container {
        justify-content: space-between;
    }
    
    nav {
        display: none;
    }
    
    .header-socials {
        gap: 0.8rem;
    }
}

.invisible-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.invisible-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Feature Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Anpassungen */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: 1.2rem;
    }
}

/* Verbesserte Impressum & Datenschutz Styles */
.section-content h1 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.section-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #000000, #000000);
    border-radius: 2px;
}

.section-content h2 {
    font-size: 1.6rem;
    color: #2c2c2c;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #000000;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.section-content ul {
    margin: 1.5rem 0;
    padding-left: 1.2rem;
    list-style-type: none;
}

.section-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.section-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.section-content a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.section-content a:hover {
    color: #000000;
    border-bottom-color: #000000;
}

.section-content a.invisible-link {
    color: inherit;
    border-bottom: none;
}

.section-content a.invisible-link:hover {
    color: #000000;
}

/* Container für bessere Lesbarkeit */
.section-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .section-content {
        padding: 2rem;
        margin: 1rem;
    }

    .section-content h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    .section-content h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .section-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .section-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .section-content h1 {
        font-size: 1.8rem;
        padding-bottom: 1rem;
    }

    .section-content h2 {
        font-size: 1.3rem;
        padding-left: 0.8rem;
    }

    .section-content ul {
        padding-left: 0.5rem;
    }
}

/* Zusätzliche Datenschutz Styles */
.privacy-part-1,
.privacy-part-2 {
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    background: #fafafa;
    border-radius: 12px;
}

.privacy-part-1::before,
.privacy-part-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #000000, #000000);
    border-radius: 4px 4px 0 0;
}

.section-content h3 {
    font-size: 1.3rem;
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content h4 {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.source {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

/* Verbesserte Listen */
.section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.section-content ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-content ul li::before {
    content: '•';
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: -1rem;
    top: 0;
}

/* Hervorhebungen */
.section-content em {
    font-style: normal;
    color: #444;
    font-weight: 500;
}

/* Bessere Lesbarkeit für Großbuchstaben-Text */
.uppercase-notice {
    font-size: 0.9rem;
    line-height: 1.6;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #000000;
    margin: 2rem 0;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .section-content {
        margin-top: 100px;
        padding: 2rem;
    }

    .privacy-part-1,
    .privacy-part-2 {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .uppercase-notice {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    padding: var(--spacing-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.cookie-content h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
}

.cookie-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: none;
}

.cookie-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.cookie-content ul li::before {
    content: '•';
    color: #000000;
    position: absolute;
    left: -1rem;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin: 1.5rem 0;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-base);
}

.cookie-buttons .accept-all {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-buttons .accept-essential {
    background: var(--color-background);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-info {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cookie-info a {
    color: var(--color-primary);
    text-decoration: none;
}

.cookie-info a:hover {
    color: var(--color-accent);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }

    .cookie-banner {
        padding: 0.5rem;
    }

    .cookie-content {
        padding: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .cookie-content ul {
        margin: 0.8rem 0;
    }

    .cookie-content ul li {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .cookie-buttons {
        margin: 1rem 0;
    }

    .cookie-buttons button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .cookie-info {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}

/* Noch kleinere Bildschirme */
@media (max-width: 480px) {
    .cookie-content h3 {
        font-size: 1.1rem;
    }

    .cookie-content p,
    .cookie-content ul li {
        font-size: 0.9rem;
    }

    .cookie-buttons button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Spezielle Styles für Cookie-Banner */
.cookie-content h3::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 4vw, 2.2rem);
        margin-bottom: 1.2rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    h2::after {
        width: 60px;
        height: 2px;
    }
}

/* Noch kleinere Bildschirme */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
        padding-bottom: 0.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }
}

:root {
    /* Farbpalette */
    --color-primary: #000000;
    --color-primary-dark: #000000;
    --color-primary-light: #000000;
    --color-accent: #ffffff;
    --color-accent-dark: #f0f0f0;
    --color-accent-light: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-surface: #f8f9fa;
    --color-border: #e0e0e0;
    --color-error: #dc3545;
    --color-success: #28a745;
    --color-warning: #000000;
    --color-info: #17a2b8;

    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-base: 1.5;
    --line-height-tight: 1.25;
    --line-height-loose: 1.75;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Z-index */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

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

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

/* Weiße Links (für Footer und dunkle Hintergründe) */
.white-link {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.white-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Invisible Links (für Telefon und E-Mail) */
.invisible-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.invisible-link:hover {
    color: var(--color-accent);
}

/* Footer Links */
.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

/* Social Media Links im Footer */
.social-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.social-links a i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
} 