/* =========================================
   KONTAKT – Neue Version für LEGAL-Layout
========================================= */

/* Der äußere wrapper kommt aus legal-content.css */
/* Wir stylen nur den inneren Bereich */

.kontakt-content {
    text-align: center;
}

.kontakt-content h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.kontakt-einleitung {
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

/* FORMULAR */
.kontakt-form {
    background: #ffffff;
    padding: 45px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.kontakt-form label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    text-align: left;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fefefe;
    font-size: 1rem;
    color: #334155;
    transition: all 0.2s ease;
    resize: none;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    outline: none;
}

.kontakt-form button {
    background: linear-gradient(135deg, #0066cc 0%, #0055aa 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
}

.kontakt-form button:hover {
    background: linear-gradient(135deg, #004999 0%, #003d7a 100%);
    transform: translateY(-2px);
}

/* Datenschutz */
.datenschutz-hinweis {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    text-align: left;
}

.datenschutz-hinweis a {
    color: #0066cc;
    font-weight: 600;
}

.js-hinweis {
    margin-top: 15px;
    color: #b91c1c;
}

/* Mobile */
@media (max-width: 600px) {
    .kontakt-form {
        padding: 30px 25px;
    }
}