/* Spezielles Stylesheet für rechtliche Seiten (Datenschutz, etc.) */

.legal-container {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg, 16px);
    padding: 40px;
    margin: 30px 0;
    box-shadow: var(--shadow-md, 0 8px 24px rgba(30,42,34,.06));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color-light);
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: left;
    color: #444;
    font-size: 1.05rem;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    text-align: left;
    color: #444;
    font-size: 1.05rem;
}

.legal-section strong {
    color: var(--primary-color-dark);
    font-weight: 600;
}

.legal-date {
    font-style: italic;
    color: #777;
    text-align: right;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Spezielle Formatierung für E-Mail-Adressen */
.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color-light);
    transition: color 0.3s, border-color 0.3s;
}

.legal-section a:hover {
    color: var(--primary-color-dark);
    border-bottom: 1px solid var(--primary-color);
    text-decoration: none;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .legal-container {
        padding: 25px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
} 