body {
    background: #f2f2f2;
    margin: 0;
    font-family: Arial, sans-serif;
}

.kontakt-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    gap: 40px;
    align-items: flex-start;
}

.kontakt-links {
    flex: 2;
}

.kontakt-rechts {
    flex: 1;
    display: flex;
    align-items: flex-start;
    margin-top: 0;
}

.kontakt-einleitung {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.kontakt-einleitung h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #003366;
}

.kontakt-einleitung p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.kontakt-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.kontakt-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Absenden-Button in Admin-Blau */
button[type="submit"] {
    background-color: #1d4ed8;
    color: white;
    padding: 12px 18px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: fit-content;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2563eb;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.info-box p {
    font-size: 15px;
    margin: 6px 0;
    color: #333;
    line-height: 1.4;
}

/* Hotline in Blau */
.hotline {
    color: #1d4ed8;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 900px) {
    .kontakt-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .kontakt-rechts {
        margin-top: 0;
    }
}