/* ==========================================================================
   Impressum Seite – DRK Hammersbach
   ========================================================================== */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

main {
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

main h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #c03030;
}

section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 40px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.section-content {
    width: 100%;
}

.section-content h2 {
    font-size: 22px;
    color: #c03030;
    border-bottom: 2px solid #c03030;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.section-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 10px 0;
}

.section-content a {
    color: #007bff;
    text-decoration: none;
}

.section-content a:hover {
    text-decoration: underline;
    color: #0056b3;
}