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

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background: url('sommerbg.jpg') no-repeat center center/cover;
    padding: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.headline {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
}

.description-container {
    background-color: rgba(0, 0, 0, 0.6);
    /* Halbtransparenter dunkler Hintergrund */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    max-width: 800px;
}

.description {
    font-size: 1.2em;
    color: white;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    /* Vergrößert die maximale Breite des Formulars */
    background-color: rgba(255, 255, 255, 0.8);
    /* Heller Hintergrund für bessere Lesbarkeit */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Styles für das freeda-campaign Webcomponent */
freeda-campaign {
    width: 100%;
}

/* Weitere Stile können nach Bedarf hinzugefügt werden */