:root {
    --primary-blue: #003BFF;
    --primary-blue-dark: #0030CC;
    --white: #ffffff;
}
/* Grundlegende Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 18px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header-Bereich */
header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px 0 20px 0;
}

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

/* Hauptbereich */
main {
    display: flex;
    justify-content: center;
}

.contact-form-container {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    max-width: 600px;
}

h1 {
    text-align: center;
    margin-bottom: 5px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* Formular-Stile */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}


.submit-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Meldungen */
#form-messages {
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
}

.error-message {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Fehlermeldungen */
.error {
    border-color: #a94442;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 0px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    h1 {
        font-size: 20px;
    }
}

/* Alternative Kontaktmöglichkeiten */
.alternative-contact {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.alternative-contact h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.alternative-contact p {
    margin-bottom: 1rem;
}

.alternative-contact a {
    color: #3478F6;
    text-decoration: none;
    transition: color 0.3s;
}

.alternative-contact a:hover {
    color: #2a62cc;
    text-decoration: underline;
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2.5rem;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    text-decoration: none!important;
}

.fa-whatsapp {
    color: #25D366;
}

.fa-telegram {
    color: #0088cc;
}

.fa-instagram {
    color: #E1306C;
} 