body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #005F00; /* Vereinsfarbe */
    color: white;
    padding: 50px 20px;
}
h1 { font-size: 2.5rem; margin-bottom: 10px; }
p { font-size: 1.2rem; margin-bottom: 20px; }

a {text-decoration: none;}
/* Buttons */
a.Button {
    background: #f0a500; /* Akzentfarbe */
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 5px;
}
a.Button:hover { background: #d18e00; }
header p {
         margin-bottom: 2em}
/* Section */
section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align:left;
}
section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
    background:#DFDFDF;
}
.responsive-logo {
    width: 100%;
    max-width: 500px; /* maximale Breite */
    height: auto;
    display: block;
    margin: 0 auto; /* zentriert auf der Seite */
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    section h2 { font-size: 1.5rem; }
    section p { font-size: 1.2rem; }
    a.Button { padding: 12px 25px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    section h2 { font-size: 1.6rem; }
    section p { font-size: 1.2rem; }
    a.Button { padding: 10px 20px; font-size: 1.1rem; }}

.responsive-image-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.responsive-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* sorgt dafür, dass Hoch- und Querformat gut aussieht */
}

.image-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5); /* halbtransparenter Balken */
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;

}

.bank-box {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px 25px;
    background-color: #f5f5f5; /* helles Grau */
    border: 1px solid #d0d0d0; /* dezenter Rahmen */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bank-item:last-child {
    border-bottom: none;
}

.bank-item strong {
    color: #333; /* dunkleres Grau für Überschrift */
}

.bank-item span {
    color: #555; /* etwas helleres Grau für Werte */
}
