/* Legal Pages Styles (Impressum, Datenschutz, Code of Conduct) */

.hero {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #99f6e4;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page {
    background-color: #f9fafb;
    padding: 40px 0;
    border-radius: 12px;
    box-shadow: none;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1f2937;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-section a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.2);
    text-underline-offset: 2px;
}

.legal-section a:hover {
    text-decoration-color: currentColor;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .legal-page {
        padding: 24px 0;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}















  
