* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #ffffff;
    line-height: 1.6;
}
  
html {
    scroll-behavior: smooth;
}
  
/* Container Styling */
.privacy-policy .container-dat {
    max-width: 800px;
    margin: 2% auto;
    padding: 40px 20px;
    background-color: rgb(41, 41, 41); /* Dunkles Grau für Kontrast */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  
/* Titel Styling */
.privacy-policy h1 {
    font-size: 32px;
    color: #d32f2f; /* Primärfarbe für Haupttitel */
    text-align: center;
    margin-bottom: 20px;
}
  
.privacy-policy h2 {
    font-size: 24px;
    color: #dddddd;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #d32f2f; /* Unterstrich als Akzent */
    padding-bottom: 5px;
}
  
.privacy-policy h3 {
    font-size: 20px;
    color: #cccccc;
    margin-top: 20px;
    margin-bottom: 10px;
}
  
/* Paragraph Styling */
.privacy-policy p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}
  
/* List Styling */
.privacy-policy ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}
  
.privacy-policy ul li {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 10px;
}
  
/* Link Styling */
.privacy-policy a {
    color: #d32f2f;
    text-decoration: underline;
    transition: color 0.3s ease;
}
  
.privacy-policy a:hover {
    color: #b71c1c;
}
  
/* Responsive Design */

/* Für Tablets und kleinere Laptops (maximale Breite 1024px) */
@media (max-width: 1024px) {
    .privacy-policy .container-dat {
        padding: 30px 15px; /* Weniger Innenabstand für Tablets */
    }

    .privacy-policy h1 {
        font-size: 28px;
    }

    .privacy-policy h2 {
        font-size: 22px;
    }

    .privacy-policy h3 {
        font-size: 18px;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 15px;
    }
}

/* Für Smartphones und kleine Bildschirme (maximale Breite 768px) */
@media (max-width: 768px) {
    .privacy-policy .container-dat {
        padding: 20px 10px;
    }

    .privacy-policy h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .privacy-policy h2 {
        font-size: 20px;
        border-bottom: 1px solid #d32f2f; /* Dünnere Linie für kleinere Bildschirme */
    }

    .privacy-policy h3 {
        font-size: 16px;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Für sehr kleine Geräte (maximale Breite 480px) */
@media (max-width: 480px) {
    .privacy-policy .container-dat {
        padding: 15px 8px;
    }

    .privacy-policy h1 {
        font-size: 24px;
    }

    .privacy-policy h2 {
        font-size: 18px;
        padding-bottom: 3px; /* Weniger Abstand unter den Unterüberschriften */
    }

    .privacy-policy h3 {
        font-size: 14px;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 13px;
        line-height: 1.5;
    }
}