﻿/* 📁 assets/css/datenschutz.css */

/* Base Styles */
.datenschutz-page {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

.datenschutz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.datenschutz-header h1 {
    color: #0078D4;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

/* Content Sections */
.datenschutz-section {
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .datenschutz-section h2 {
        color: #800000;
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #f0f0f0;
    }

    .datenschutz-section p {
        margin-bottom: 15px;
    }

    .datenschutz-section address {
        font-style: normal;
    }

    .datenschutz-section a {
        color: #0078D4;
        text-decoration: none;
        transition: color 0.3s;
    }

        .datenschutz-section a:hover {
            color: #106EBE;
            text-decoration: underline;
        }

/* Footer */
.datenschutz-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .datenschutz-page {
        padding: 60px 0 30px;
    }

    .datenschutz-header h1 {
        font-size: 2rem;
    }

    .datenschutz-section {
        padding: 20px;
    }
}
