body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #0078ff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

a {
    font-size: 15px;           /* Schriftgröße vergrößern */
    color: #007BFF;            /* Linkfarbe ändern (Blau) */
    text-decoration: none;     /* Unterstreichung entfernen */
    font-weight: bold;         /* Fett darstellen */
}

button:hover {
    background: #005fcc;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .contact-container {
        padding: 20px;
    }

    button {
        font-size: 14px;
    }

    a {
    font-size: 20px;           /* Schriftgröße vergrößern */
    color: #007BFF;            /* Linkfarbe ändern (Blau) */
    text-decoration: none;     /* Unterstreichung entfernen */
    font-weight: bold;         /* Fett darstellen */
}

}
