body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
}

form {
    text-align: left;
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input,select {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #238542; /* Ändern Sie die Hintergrundfarbe auf das gewünschte Grün */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin: 15px 0;
}

button::hover {
    background-color: #186c37; /* Ändern Sie die Hintergrundfarbe im Hover-Zustand */
}

.wine-bar-image {
    background-image: url('wine-bar-image.jpg');
    height: 200px; /* Set the desired height */
    background-size: cover;
    background-position: center;
}

.success-message {
    color: #238542; /* Grün für die Bestätigungsnachricht */
    font-weight: bold;
}

/* ✅ Trust-Badges Styling */
.trust-badges {
    display: flex; /* Setzt die Trust-Badges nebeneinander */
    justify-content: space-between; /* Verteilt die Elemente mit Abstand */
    align-items: center;
    flex-wrap: wrap; /* Falls der Bildschirm zu klein ist, umbrechen */
    margin-top: 20px;
    padding: 15px;
    background: #eaeaea;
    border-radius: 10px;
}

.trust-item {
    flex: 1; /* Gleichmäßige Verteilung */
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 10px;
    white-space: nowrap; /* Verhindert Umbruch */
}

/* ✅ Responsive Anpassung für kleinere Displays */
@media (max-width: 600px) {
    .trust-badges {
        flex-direction: column; /* Trust-Badges untereinander auf kleinen Geräten */
        align-items: center;
    }

    .trust-item {
        width: 100%; /* Volle Breite auf kleinen Geräten */
        padding: 8px;
    }
}