/* Container und Basisformatierung */
.v-impressum-container {
    line-height: 1.6;
    color: #2c3e50;
    max-width: 100%;
    margin: 1.5rem 0;
}

/* Haupttitel (Impressum / Datenschutz) */
.v-impressum-title {
    color: #1a2a4a;
    font-size: 2.6rem;
    margin: 0 0 2.5rem 0;
    font-weight: 800;
    border-bottom: 4px solid #1e90ff;
    padding-bottom: 0.5rem;
}

/* Auffällige Banner-Zwischenüberschriften (H2) */
.v-impressum-subtitle {
    background-color: #1a2a4a;
    color: #ffffff !important;
    font-size: 1.85rem !important;
    margin: 3rem 0 1.25rem 0;
    font-weight: 800 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border-left: 6px solid #1e90ff;
    box-shadow: 0 2px 5px rgba(26, 42, 74, 0.15);
}

/* Ergänzung für H3-Überschriften im Datenschutz */
.v-ds-h3 {
    color: #1a2a4a;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 700;
}

/* Ergänzung für H4-Überschriften im Datenschutz */
.v-ds-h4 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin: 1.25rem 0 0.5rem 0;
    font-weight: 700;
}

/* Hellblaue Inhaltsboxen mit blauem Seitenbalken */
.v-impressum-box {
    background-color: #eef4fc;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid #1e90ff;
    box-shadow: 0 1px 3px rgba(26, 42, 74, 0.05);
}

.v-impressum-box p {
    margin: 0 0 0.75rem 0;
}

.v-impressum-box p:last-child {
    margin-bottom: 0;
}

/* Ergänzung für Listen innerhalb der Boxen */
.v-impressum-box ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.v-impressum-box li {
    margin-bottom: 0.5rem;
}

/* Textformatierung innerhalb der Boxen */
.v-impressum-strong {
    color: #1a2a4a;
    font-size: 1.15rem;
}

/* Link-Styling für Formulare und externe Links */
.v-impressum-link {
    color: #1e90ff !important;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed #1e90ff;
}

.v-impressum-link:hover {
    color: #1a2a4a !important;
    border-bottom-style: solid;
}