/* Impressum-Styling */
.legal-hero {
    background: linear-gradient(135deg, #f5f5f7 0%, #e5e5ea 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid #d2d2d7;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.legal-hero .subtitle {
    color: #86868b;
    font-size: 1.1rem;
}

.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-card {
    background: white;
    border-radius: 14px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e5e5;
}

.legal-card h2 {
    color: #1d1d1f;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f7;
}

.legal-card h3 {
    font-size: 1.3rem;
    color: #424245;
    margin-top: 0;
    margin-bottom: 1rem;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

address {
    font-style: normal;
    line-height: 1.7;
    color: #515154;
}

address a {
    color: #0066cc;
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
}

.regulation-grid, .disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.regulation-item, .disclaimer-item {
    background: #fbfbfd;
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid #0066cc;
}

.regulation-item p, .disclaimer-item p {
    color: #515154;
    line-height: 1.7;
    margin-bottom: 0;
}

.image-credits {
    list-style-type: none;
    padding: 0;
    columns: 2;
    column-gap: 40px;
}

.image-credits li {
    margin-bottom: 10px;
    color: #515154;
    break-inside: avoid;
}

.image-credits a {
    color: #0066cc;
    text-decoration: none;
}

.image-credits a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 40px;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-card {
        padding: 25px;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-credits {
        columns: 1;
    }
}