/* =========================
   DATENSCHUTZ DESIGN STYLE
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f172a;
    color: #f1f5f9;
    line-height: 1.8;
    padding: 40px 20px;
}

/* Hauptcontainer */
body {
    max-width: 1100px;
    margin: auto;
}

/* Überschriften */
h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #38bdf8;
    text-align: center;
    border-bottom: 3px solid #38bdf8;
    padding-bottom: 15px;
}

h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #7dd3fc;
    font-size: 2rem;
    border-left: 5px solid #38bdf8;
    padding-left: 15px;
}

h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #bae6fd;
    font-size: 1.4rem;
}

/* Text */
p {
    margin-bottom: 18px;
    color: #e2e8f0;
}

/* Listen */
ul {
    margin: 20px 0;
    padding-left: 25px;
}

li {
    margin-bottom: 12px;
}

/* Inhaltsverzeichnis */
.index {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.index-link {
    color: #38bdf8;
    text-decoration: none;
    transition: 0.3s ease;
}

.index-link:hover {
    color: white;
    padding-left: 5px;
}

/* Links allgemein */
a {
    color: #38bdf8;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: white;
}

/* Boxen */
.m-elements,
.glossary {
    background: rgba(255,255,255,0.04);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Footer */
footer {
    margin-top: 60px;
    text-align: center;
}

footer a {
    display: inline-block;
    padding: 14px 30px;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s ease;
}

footer a:hover {
    background: white;
    transform: translateY(-3px);
}

/* Datenschutz Generator Hinweis */
.seal {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Blur-Texte schöner */
.dsg-license-content-blurred {
    filter: blur(4px);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {

    body {
        padding: 20px 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}