/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #0f3548;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}



/* Logo in der Mitte */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 250px;
    height: auto;
}

.intro {
    text-align: center;
    margin-bottom: 20px;
	max-width: 500px;
}

/* Kontaktformular */
.contact-form-section {
    max-width: 500px;
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    color: #19262f;
    text-align: center;
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #19262f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

form button:hover {
    background-color: #419262f;
}

footer {
    text-align: center;
    padding: 10px;
    color: #c6c5c5;
    font-size: 14px;
    margin-top: auto;
}

/* Pop-up für Rückmeldung */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 80%;
    max-width: 300px;
}

.popup button {
    margin-top: 10px;
    padding: 10px;
    background-color: #19262f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.error {
    color: red;
    font-size: 12px;
    display: none;
	

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .logo {
        max-width: 120px;
    }
	
	.intro {
    text-align: center;
    margin-bottom: 20px;
	max-width: 400px;
}
	
}
