﻿/* Grunddesign für den Body */
body {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 2rem;
}

.zentriert {
    text-align: center;
}

/* Große Absätze für separate Themenblöcke */
body.support-seite .grosserAbsatz {
    padding-top: 0.5rem;
}

/* Kleine Absätze für Detailinformationen */
body.support-seite .kleinerAbsatz {
    padding-top: 1.5rem;
}

body.support-seite .absatzUeberschrift {
    font-weight: bold;
}

/* Große Absätze für separate Themenblöcke */
body.datenschutz-seite .grosserAbsatz {
    padding-top: 1.5rem;
    font-size: 16px;
    font-weight: bold;
    color: #444;
    border-top: 2px solid #ddd;
    margin-top: 1rem;
}

/* Kleine Absätze für Detailinformationen */
body.datenschutz-seite .kleinerAbsatz {
    padding-top: 0.5rem;
    font-size: 14px;
    color: #555;
}

/* Titel der Datenschutzerklärung */
body.datenschutz-seite h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #222;
    margin-bottom: 1rem;
}

/* Untertitel oder Zwischenüberschriften */
body.datenschutz-seite h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

body.datenschutz-seite h3 {
    margin-block-start: 0;
}

/* Absatzstil für Listen oder Detailinformationen */
ul {
    padding-left: 2rem;
    list-style-type: disc;
    color: #555;
}

li {
    padding: 0.3rem 0;
}

/* Stil für Kontaktinformationen oder Adressangaben */
.contact-info {
    background-color: #f1f1f1;
    padding: 1rem;
    border-left: 4px solid #007bff;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Schöne Formatierung von Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}