 body {
        font-family: 'Poppins', sans-serif;
        background-color: #000000;
        color: #E0E0E0;
        margin: 0;
        padding: 0;
    }

    .datenschutz-section {
        min-height: 100vh;
        padding: 8rem 2rem 4rem;
        background: #000000;
        position: relative;
        overflow: hidden;
    }

    .datenschutz-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 194, 160, 0.1), transparent 70%);
        filter: blur(120px);
        pointer-events: none;
    }

    .datenschutz-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .page-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .page-label {
        display: inline-block;
        color: #1E73BE;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .page-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-subtitle {
        font-size: 1.1rem;
        color: #B0B0B0;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
    }

    .datenschutz-content {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 20px;
        padding: 3rem;
        backdrop-filter: blur(10px);
    }

    .datenschutz-section-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        margin-top: 3rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(30, 115, 190, 0.3);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .datenschutz-section-title:first-of-type {
        margin-top: 0;
    }

    .datenschutz-section-title i {
        color: #1E73BE;
        font-size: 1.3rem;
    }

    .datenschutz-info p {
        margin: 1rem 0;
        line-height: 1.8;
        color: #B0B0B0;
    }

    .datenschutz-info strong {
        color: #E0E0E0;
        font-weight: 600;
    }

    .datenschutz-info a {
        color: #1E73BE;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .datenschutz-info a:hover {
        color: #00C2A0;
    }

    .datenschutz-info ul {
        margin: 1rem 0 1rem 1.5rem;
        color: #B0B0B0;
    }

    .datenschutz-info li {
        margin: 0.5rem 0;
        line-height: 1.8;
    }

    .highlight-box {
        background: rgba(30, 115, 190, 0.1);
        border-left: 4px solid #1E73BE;
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 8px;
    }

    .highlight-box p {
        margin: 0.5rem 0;
        color: #E0E0E0;
    }

    .info-box {
        background: rgba(0, 194, 160, 0.1);
        border: 1px solid rgba(0, 194, 160, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .info-box h4 {
        color: #00C2A0;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .info-box p {
        margin: 0.5rem 0;
        color: #B0B0B0;
    }

    .table-responsive {
        overflow-x: auto;
        margin: 1.5rem 0;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background: rgba(26, 26, 26, 0.5);
        border-radius: 8px;
        overflow: hidden;
    }

    th, td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(30, 115, 190, 0.2);
    }

    th {
        background: rgba(30, 115, 190, 0.2);
        color: #FFFFFF;
        font-weight: 600;
    }

    td {
        color: #B0B0B0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .datenschutz-section {
            padding: 6rem 1.5rem 3rem;
        }

        .page-title {
            font-size: 2rem;
        }

        .datenschutz-content {
            padding: 2rem 1.5rem;
        }

        .datenschutz-section-title {
            font-size: 1.3rem;
        }
    }