.hero {
    background: #e9f3ef;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2f6f5d;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.angebote {
    padding: 70px 0;
}

.angebote h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2f6f5d;
}

/* Immer 3 nebeneinander */
.angebot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.angebot-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    padding-bottom: 20px;
}

.angebot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.angebot-card h3 {
    margin: 20px 0 10px;
    color: #2f6f5d;
}

.angebot-card p {
    padding: 0 20px;
    font-size: 15px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .angebot-grid {
        grid-template-columns: 1fr;
    }
}
