/* Angebot Detail Section */
.angebot-detail {
    padding: 10rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
    display: flex; /* Flexbox hinzufügen */
    flex-direction: column; /* Inhalt vertikal anordnen */
    align-items: center; /* Zentriert den Inhalt horizontal */
    justify-content: center; /* Zentriert den Inhalt vertikal */
    min-height: 100vh; /* Mindestens die volle Höhe des Viewports */
}

.angebot-detail h1 {
    font-size: 2rem;
    color: #00274d;
    margin-bottom: 1rem;
}

.angebot-detail h2 {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 1rem;
}

.angebot-detail .preis {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 2rem;
}

.bilder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px; /* Breite des Bildcontainers */
    margin: 0 auto; /* Zentrierung des Containers */
}

.bilder img {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.beschreibung {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center; /* Text ebenfalls zentrieren */
}

.hinweis {
    background-color: #ffefcc;
    border-left: 4px solid #ffcc00;
    padding: 1rem;
    border-radius: 4px;
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Optionaler Schatten */
}
