/* Grundlegende Typografie und Reset */
:root {
    --color-primary: #dc3545; /* Rot für Dringlichkeit und EVB */
    --color-secondary: #c82333; /* Dunkleres Rot */
    --color-text: #333;
    --color-light-bg: #f8f9fa; 
    --font-family: Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 2px solid var(--color-primary);
    padding: 10px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.header-logo {
    height: 40px; 
}

header nav a {
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    color: var(--color-text);
}

.phone-link {
    color: var(--color-primary);
    font-weight: bold;
}


/* HERO-SEKTION EVB */
.hero-section {
    background-color: var(--color-primary);
    text-align: center;
    padding: 80px 0;
    color: white; 
}

.express-tag {
    display: inline-block;
    background-color: #ffc107;
    color: var(--color-secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-section h2 {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* CTA Button Styles */
.button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 1.2em;
    text-align: center;
    min-width: 280px;
}

/* Hero CTA: Weißer Button */
.primary-cta {
    background-color: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.primary-cta:hover {
    background-color: #f1f1f1;
}

/* Sekundärer CTA: Roter Button (z.B. für Online-Vergleich) */
.secondary-cta {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.secondary-cta:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* Sektion für Content */
.content-section {
    padding: 60px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.light-bg {
    background-color: var(--color-light-bg);
}

.warning-text {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section p a {
    color: var(--color-primary);
    font-weight: bold;
}

/* Doppel-CTA-Reihe für die Auswahl */
.cta-row-double {
    display: flex;
    justify-content: center;
    gap: 30px; 
    margin-top: 30px;
}

.cta-box {
    flex-basis: 45%; 
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.cta-box h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}
.cta-box p {
    min-height: 80px; /* Einheitliche Höhe für Textblöcke */
}


/* Styling für den Telefon-CTA im Doppel-Block */
.phone-cta {
    background-color: #ffc107; /* Gelb/Gold als Akzent für die Beratung */
    color: var(--color-text);
    border: 2px solid #ffc107;
    margin-top: 15px;
}

.phone-cta:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.small-info {
    font-weight: bold;
    margin-top: 30px;
}


/* Footer */
footer {
    background-color: var(--color-text);
    color: white;
    padding: 20px 0;
    font-size: 0.9em;
}

footer .container {
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-info {
    margin-top: 10px;
}
.footer-info a {
    color: #ffc107;
}

/* Responsivität */
@media (max-width: 800px) {
    .hero-section h1 {
        font-size: 2.5em;
    }
    .cta-row-double {
        flex-direction: column;
        gap: 15px;
    }
    .button {
        min-width: 90%;
        max-width: 100%;
        width: 100%;
    }
    .cta-box p {
        min-height: auto;
    }
}