.kontakt-seite {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.kontakt-formular .container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-formular h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.kontakt-formular p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #436181;
}

textarea {
    resize: vertical;
}

.pflicht {
    color: #c0392b;
}

.form-submit {
    text-align: center;
}

button[type="submit"] {
    background-color: #436181;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2c3e50;
}
