body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f4f6; /* Hellgrauer Hintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    /* Ein leichter blauer Schimmer im Hintergrund passt zum Thema Wasser */
    background: linear-gradient(180deg, #ffffff 0%, #e1e8f0 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding-top: 50px;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 450px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    color: #1a3c2a; /* WPV Primärblau */
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    background-color: #b5892e;
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    border-bottom: 3px solid #721c24;
}

.link-card:hover {
    border-bottom: 3px solid #1a3c2a;
    transform: scale(1.02);
}

footer {
    margin-top: 40px;
    font-size: 0.8rem;
}

footer a {
    color: #005596;
    text-decoration: none;
    margin: 0 5px;
}