body {
    font-family: 'Lato-Regular', Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
}

html,
body {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato-Bold', Arial, sans-serif;
}

.container {
    padding: 20px;
    background: #ffffff;
}

.centered-container {
    max-width: 900px;
    margin: 10px auto 0 auto;
    text-align: left;
}

.position-relative {
    max-width: 900px;
    position: relative;
    background: #ffffff;
}

header {
    background: #ffffff;
    padding: 20px;
    text-align: center;
}

.header-image {
    margin-bottom: 0px;
}

.header-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.infobox {
    background: #ffffff;
    padding: 20px;
    text-align: left;
    line-height: 1;
    margin-bottom: 0px;
}

.pronoun {
    color: #cccccc;
}

main {
    padding: 20px;
    background: #ffffff;
    text-align: left;
}

@font-face {
    font-family: 'Lato-Bold';
    src: url('/fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: 'Lato-Regular';
    src: url('/fonts/Lato-Regular.ttf');
}

.social-icons {
    position: absolute;
    top: 40px;
    right: 40px;
}

.social-icons a {
    display: inline-block;
    color: #333;
    font-size: 24px;
    margin-left: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #555;
}
form {
    max-width: 400px;
}
label {
    display: block;
    margin-bottom: 3px;
}
input[type='text'],
input[type='email'],
textarea {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

input[type='submit'] {
    border-radius: 10px;
    background-color: #0073b1;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

input[type='submit']:hover {
    border-radius: 10px;
    background-color: #0c9913;
    transform: scale(1.2);
    transition-delay: 0.2s;
}

/* Definieren Sie die Größe der Checkbox */
input[type='checkbox'] {
    width: 15px; /* Ändern Sie die Breite der Checkbox */
    height: 15px; /* Ändern Sie die Höhe der Checkbox */
    margin: 0;
    vertical-align: middle;
}

.phone-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073b1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.phone-button:hover {
    background-color: #0c9913;
    transform: scale(1.2);
    transition-delay: 0.2s;
}

/* Ändern Sie die Position des zugehörigen Labels */
.checkbox-container label {
    display: inline;
    margin-left: 5px;
    vertical-align: middle;
}

/* Verstecken Sie standardmäßig alle Texte */
.text-desktop,
.text-tablet,
.text-mobile {
    display: none;
}

/* Definieren Sie einen Media Query für Mobile-Geräte (z.B. bis 767px) */
@media screen and (max-width: 767px) {
    /* Zeigen Sie den Mobile-Text und verstecken Sie den Desktop- und Tablet-Text auf Mobile-Geräten */
    .text-mobile {
        display: block;
    }
    .text-desktop,
    .text-tablet {
        display: none;
    }
}

/* Definieren Sie einen Media Query für Tablet-Geräte (z.B. zwischen 768px und 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    /* Zeigen Sie den Tablet-Text und verstecken Sie den Desktop- und Mobile-Text auf Tablet-Geräten */
    .text-tablet {
        display: block;
    }
    .text-desktop,
    .text-mobile {
        display: none;
    }
}

/* Definieren Sie einen Media Query für Desktop-Geräte (z.B. ab 992px) */
@media screen and (min-width: 992px) {
    /* Zeigen Sie den Desktop-Text und verstecken Sie den Tablet- und Mobile-Text auf Desktop-Geräten */
    .text-desktop {
        display: block;
    }
    .text-tablet,
    .text-mobile {
        display: none;
    }
}
footer {
    clear: both;
    padding: 20px;
    background: #ffffff;
    text-align: left;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 8px;
}

.logo img {
    width: 100px; /* Feste Breite für die Logos */
    height: 50px; /* Feste Höhe für die Logos */
    object-fit: contain; /* Behält das Seitenverhältnis der Logos bei */
}

@media screen and (max-width: 768px) {
    table,
    tr,
    td {
        display: block;
    }

    td {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    tr:first-child td {
        border-top: none;
    }

    tr:not(:first-child) td {
        border-top: 1px solid #ddd;
    }
}

ul {
    list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
    padding: 0; /* Entfernt den Standard-Abstand */
}

li {
    background-color: #f0f0f0; /* Hintergrundfarbe für die Listenelemente */
    border: 0px solid #ccc; /* Rahmen um die Listenelemente */
    border-radius: 5px; /* Abgerundete Ecken für die Listenelemente */
    color: #333; /* Schriftfarbe für die Listenelemente */
    font-size: 16px; /* Schriftgröße für die Listenelemente */
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
    padding: 10px; /* Innenabstand für die Listenelemente */
    transition: 0.3s; /* Übergangseffekt für Hover-Effekt */
}

li:hover {
    background-color: #e0e0e0; /* Hintergrundfarbe für das Hover-Listenelement */
    cursor: pointer; /* Cursor-Stil für das Hover-Listenelement */
}

.responsive-image {
    max-width: 100%; /* Begrenzt die maximale Breite des Bildes auf 100% der Container-Breite */
    height: auto; /* Behält das Seitenverhältnis des Bildes bei */
}
