/* Privacy Content Styles */
.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 90px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    background: var(--background);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    line-height: 1.8;
}

.privacy-content h1 {
    color: var(--header);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1rem;
}

.privacy-content h2 {
    color: var(--header);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.privacy-content h3 {
    color: var(--header);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-content ul, .privacy-content ol {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: none;
    word-break: break-word;
    max-width: 100%;
    display: inline-block;
}

.privacy-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.privacy-seal {
    display: block;
    max-width: 200px;
    margin: 2rem auto;
}

/* Verbesserte Abschnittstruktur */
.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
    }
}
