/* ========================================= */
/* BASE STYLES & TYPOGRAPHY */
/* ========================================= */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Dezenter Hintergrund für Content-Blöcke */
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
}

h2 {
    color: #004a99; /* Hauptfarbe: Versicherungsblau */
}

h3 {
    color: #004a99;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

/* Container Zentrierung */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

/* ========================================= */
/* 1. HEADER & NAVIGATION */
/* ========================================= */
header {
    background-color: #ffffff;
    border-bottom: 4px solid #004a99; /* Starker blauer Akzent */
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-branding {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 35px; /* Größe des Logos */
    width: auto;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 1.4em;
    color: #004a99;
}

header nav a {
    color: #004a99;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

/* ========================================= */
/* 2. HERO SEKTION (Mit Bild) */
/* ========================================= */
.hero-section {
    color: white;
    text-align: center;
    padding: 40px 20px 0 20px;
    min-height: 400px;
    border-bottom: 8px solid #004a99;
}

.hero-title {
    font-size: 2.2em;
    max-width: 700px;
    margin: 150px auto 10px auto;
    background: rgba(0, 74, 153, 0.85); /* Transparentes Blau */
    padding: 15px;
    border-radius: 5px;
    color: white;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 20px auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    color: white;
}

/* ========================================= */
/* 3. CTA STRIP */
/* ========================================= */
.cta-strip {
    background-color: #e9e9e9;
    text-align: center;
    padding: 25px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-red {
    background: #e3000f; /* KFZ-Rot für den Vergleich */
    color: white;
}

.cta-blue {
    background: #004a99; /* Service-Blau für den Anruf */
    color: white;
}

.cta-red:hover {
    background: #c0000d;
}

.cta-blue:hover {
    background: #00366b;
}

/* ========================================= */
/* 4. CONTENT BLOCK A: BEWEIS-BLOCK (Drei Säulen) */
/* ========================================= */
.proof-block {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.proof-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.proof-column {
    width: 30%;
    min-width: 280px;
    text-align: center;
    padding: 15px;
}

.proof-column img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    box-sizing: border-box;
}

.proof-column .portrait {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #004a99;
}

.proof-column a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.proof-column .review-link {
    font-size: 0.9em;
    color: #e3000f;
    font-weight: bold;
    margin-top: 5px;
}

/* ========================================= */
/* 5. CONTENT BLOCK B: TEXTE */
/* ========================================= */
.text-block {
    padding: 40px 0;
    background: #f4f4f4;
}

/* ========================================= */
/* 6. FOOTER */
/* ========================================= */
footer {
    background-color: #004a99;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85em;
}

footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.8em;
    opacity: 0.7;
    margin-top: 15px;
}

/* ========================================= */
/* RESPONSIVE ANPASSUNGEN */
/* ========================================= */

@media (max-width: 768px) {
    
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .header-branding {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .header-logo {
        margin-right: 0;
        margin-bottom: 5px;
    }

    header nav {
        margin-top: 10px;
    }

    header nav a {
        display: block;
        margin: 5px 0;
    }

    .hero-title {
        font-size: 1.8em;
        margin-top: 50px;
    }

    .cta-button {
        display: block;
        margin: 10px auto;
    }

    .proof-columns {
        flex-direction: column;
        align-items: center;
    }

    .proof-column {
        width: 95%;
        margin-bottom: 20px;
    }
}