.blank-link {
    text-decoration: none !important;
    color: inherit !important;
}

/* Styling für das Kontaktformular */
form {
    width: 100%; /* Formular passt sich dem Container an */
    box-sizing: border-box; /* Padding und Border in die Breite einrechnen */
}

/* Input-Felder */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: calc(100% - 20px); /* Volle Breite des Containers, minus Padding */
    padding: 10px; /* Innenabstand für lesbare Texteingabe */
    margin-bottom: 15px; /* Abstand zwischen den Feldern */
    border: 1px solid #ccc; /* Standardrahmen */
    border-radius: 5px; /* Abgerundete Ecken */
    box-sizing: border-box; /* Padding und Border in die Breite einrechnen */
}

/* Textarea anpassen */
form textarea {
    resize: vertical; /* Nutzer kann die Höhe anpassen */
    min-height: 100px; /* Mindesthöhe */
}

/* Button */
form button {
    width: 100%; /* Button füllt die gesamte Breite */
    padding: 10px;
    background-color: #0078d7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #005bb5;
}

#contact-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

#contact-section h2 {
    color: #0078d7;
    margin-bottom: 20px;
    text-align: center;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

#contact-form input[type="text"],
#contact-form input[type="tel"],
#contact-form textarea,
#contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form textarea {
    resize: vertical; /* Benutzer kann die Größe anpassen */
}

#contact-form button {
    background-color: #0078d7;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #005bb5;
}

#contact-form div {
    margin-bottom: 15px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start; /* Richtet Checkbox und Label an der Oberseite aus */
    gap: 10px; /* Abstand zwischen Checkbox und Text */
    text-align: left;
}

.kontakt-label {
    text-align: left;
}

.kontaktseitenicon {
    padding-left: 30px;
}

#kontaktfuerbrowserkontaktseite {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    font-size: 40px;
}

#rotlicht_bild {
    max-width: 600px;
}

.telefonkontakt {
    display: flex !important;
    justify-content: center !important; /* Zentriert den Wrapper horizontal */
    align-items: center !important;
    flex-direction: column !important; /* Stellt die Elemente übereinander */
    text-align: center !important;
}

.telefon-wrapper {
    display: flex !important;
    flex-direction: column !important; /* Ordnet Nummer und Icon untereinander */
    align-items: center !important; /* Zentriert beide Elemente */
    text-decoration: none !important; /* Entfernt Standard-Link-Styling */
}

#telefonnummer-kontakt {
    margin-bottom: 5px !important; /* Abstand zwischen Nummer und Icon */
}


@media (max-width: 768px) {
#kontaktfuerbrowserkontaktseite {
    font-size: 20px;
}
}
