body {
    font-family: 'Roboto', sans-serif;
    background-color: #0B214D;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
#erweitertes-kontaktformular {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#erweitertes-kontaktformular h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}
#erweitertes-kontaktformular p {
    font-weight: bold;
    margin-bottom: 10px;
}
#erweitertes-kontaktformular input[type="text"],
#erweitertes-kontaktformular input[type="email"],
#erweitertes-kontaktformular input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
#erweitertes-kontaktformular input::placeholder {
    color: #999;
}
#erweitertes-kontaktformular button[type="submit"] {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 15px 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
#erweitertes-kontaktformular button[type="submit"]:hover {
    background-color: #FF8C00;
}
.info-box {
    background-color: #FFF3CD;
    border: 1px solid #FFEEBA;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}
.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.action-button {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s;
    margin: 0 5px;
}
.action-button:hover {
    background-color: #f8f9fa;
}
.whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
}
.whatsapp-button:hover {
    background-color: #128C7E;
}
.disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}