/* =========================================
   RECHTLICHE SEITEN (Privacy, Imprint, Terms)
   ========================================= */

.privacy-hero,
.terms-hero {
    height: 50vh;
    background: linear-gradient(rgba(74,110,94,0.7), rgba(74,110,94,0.7)),
                url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.privacy-hero h1,
.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.privacy-hero h1 span,
.terms-hero h1 span {
    color: var(--secondary-color);
}

.privacy-hero p,
.terms-hero p {
    font-size: 1.2rem;
}

.privacy-content,
.terms-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.privacy-text,
.terms-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    color: var(--accent-color);
}

.section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.section li {
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
}

.section li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.contact-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight {
    background: linear-gradient(135deg, #fff9f0, #fff0e6);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin: 20px 0;
    font-weight: 500;
}

.note {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
    font-size: 0.9rem;
    font-style: italic;
    margin: 15px 0;
}

.last-update {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.last-update p {
    margin: 0;
    font-size: 1.1rem;
}