/* Allgemeine Stile */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Merriweather', serif;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #1E3A5F;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kontakt-container {
    flex: 1;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #1E3A5F;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: bold;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Formular */
form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 1rem;
    color: #1E3A5F;
    font-weight: bold;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: #1E3A5F;
    box-shadow: 0 0 8px rgba(30, 58, 95, 0.2);
    outline: none;
}

textarea {
    resize: vertical;
}

button {
    background-color: #1E3A5F;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #16324C;
}

/* Checkbox-Styling */
form .form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

form .form-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #1E3A5F;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

form .form-group input[type="checkbox"]:checked {
    background-color: #1E3A5F;
    border-color: #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

form .form-group input[type="checkbox"]:checked::after {
    content: '✔';
    font-size: 1rem;
    color: white;
    display: block;
    text-align: center;
}

form .form-group input[type="checkbox"]:hover {
    border-color: #FFD700;
}

form .form-group:hover label {
    color: #1E3A5F;
}

/* Footer */
footer {
    background-color: #1E3A5F;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kontakt-container {
        margin: 30px 15px;
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}
.contact-whatsapp {
    position: fixed;
    bottom: 20px; /* Abstand vom unteren Rand */
    
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px; /* Macht den Button rundlich */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px; /* Schriftgröße */
}

.contact-whatsapp:hover {
    background-color: #1da851; /* Etwas dunkler bei Hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: scale(1.05); /* Leichtes Vergrößern bei Hover */
}

.contact-whatsapp a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.contact-whatsapp i {
    font-size: 24px; /* Größe des WhatsApp-Icons */
}

.contact-whatsapp p {
    margin: 0;
    font-weight: bold;
}

.contact-whatsapp p span {
    font-weight: bold;
}

