/* Hintergrund & Wrapper wie bei Impressum/Contact */
.page.page-datenschutz {
    background-image: url("background_dunkel.png");
}

.legal-wrapper {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 160px;
    color: var(--text-main);
    font-family: "Satoshi", sans-serif;
    z-index: 2;
}

.legal-title {
    font-size: 2.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
    color: #73746e; /* Akzentfarbe */
}

.legal-content section {
    margin-bottom: 35px;
}

.legal-content h2 {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #d5d1c8;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 12px;
}

/* Spezielles Styling für die Listen im Datenschutz */
.legal-list {
    list-style: none;
    padding-left: 18px;
    margin-bottom: 20px;
}

.legal-list li {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 8px;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0.7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(245, 245, 245, 0.5);
}

.legal-content a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 245, 245, 0.4);
    transition: all 0.2s ease;
}

.legal-content a:hover {
    color: #73746e;
    border-bottom-color: #73746e;
}