/* Hero */
.angebot-hero {
    position: relative;
}

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

.angebot-hero h1 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 36px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Intro */
.angebot-intro {
    padding: 80px 0 60px;
    text-align: center;
    background: #ffffff;
}

.angebot-intro h2 {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: normal;
}

/* Split */
.angebot-split {
    padding: 80px 0;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.split-grid img {
    width: 100%;
    border-radius: 6px;
}

.split-grid ul {
    list-style: none;
    margin-bottom: 25px;
}

.split-grid li {
    margin-bottom: 10px;
}

/* Preis */
.angebot-preis {
    padding: 80px 0;
    background: #f1f3f1;
    display: flex;
    justify-content: center;
}

.preis-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.preis-box .preis {
    font-size: 34px;
    font-weight: bold;
    margin: 15px 0;
}

/* Outro */
.angebot-outro {
    padding: 80px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}
