/* ==========================================================================
   Allgemeine Stile für Blutspendeseite
   ========================================================================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* ==========================================================================
   Hauptinhalt
   ========================================================================== */
main {
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

main h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #c03030;
}

/* Sektionen */
section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 40px auto;
    max-width: 1300px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.section-content {
    flex: 1 1 400px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 5px solid #c03030;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Überschriften */
section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #c03030;
    border-bottom: 2px solid #c03030;
    padding-bottom: 5px;
}

/* Text & Listen */
.section-content p,
.section-content li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-top: 0;
}

.section-content ul,
.section-content ol {
    padding-left: 20px;
    margin: 0;
}

/* Links */
.section-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.section-content a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Call-to-Action Button */
.cta-button,
.cta-button:visited,
.cta-button:active {
    display: inline-block;
    background-color: #c03030;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #a62828;
    color: white; /* <- wichtig: verhindert blauen Hover-Text */
}

a.cta-button,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active,
a.cta-button:focus {
    color: white !important;
    text-decoration: none !important;
}

.ablauf-schritt {
    margin-bottom: 25px;
}

.ablauf-schritt h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.ablauf-schritt p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}
