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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #f4f7fb 0%, #e8eef7 100%);
    color: #122033;
    min-height: 100vh;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border-bottom: 1px solid #dbe3ef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #ff3b30;
}

.anbieter-btn,
.anbieter-btn-big {
    display: inline-block;
    background: #0ea35c;
    color: white;
    padding: 14px 22px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1;
}

.anbieter-btn:hover,
.anbieter-btn-big:hover {
    background: #0b864b;
}

/* HERO */

.hero {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.hero-box {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

h1 {
    font-size: 68px;
    color: #ff3b30;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #22354f;
}

/* NOTFALL GRID */

.notfall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.notfall-item {
    background: white;
    border: 2px solid #e4eaf3;
    padding: 20px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.notfall-item:hover {
    border-color: #ff3b30;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,59,48,0.15);
}

/* SEARCH */

.search-box {
    margin-top: 20px;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 16px;
    border: 2px solid #dbe3ef;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.search-box button {
    background: #ff3b30;
    color: white;
    border: none;
    padding: 18px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: #e62d24;
}

/* STATUS */

.live-status {
    margin-top: 20px;
    color: #0ea35c;
    font-weight: bold;
    font-size: 17px;
}

/* PREISE */

.preise {
    padding: 50px 20px;
    text-align: center;
}

.preise h2 {
    margin-bottom: 30px;
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.price-card {
    background: white;
    border: 1px solid #e4eaf3;
    border-radius: 16px;
    padding: 25px;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.price-card h3 {
    margin-bottom: 10px;
}

/* SCHUTZ */

.schutz {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: #eefaf3;
    color: #0d5b34;
    padding: 30px 20px;
    font-weight: bold;
}

/* AKTIONEN */

.aktionen {
    text-align: center;
    padding: 40px 20px;
}

.aktionen button {
    margin: 10px;
    padding: 14px 22px;
    border: none;
    border-radius: 10px;
    background: #0ea35c;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* ANBIETER */

.anbieter-start {
    text-align: center;
    padding: 50px 20px;
}

/* FOOTER */

footer {
    margin-top: 40px;
    background: #f1f5fb;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px;
}

.footer-links a {
    color: #122033;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    h1 {
        font-size: 44px;
    }

    .subtitle {
        font-size: 20px;
    }

    .hero-box {
        padding: 25px;
    }

    .notfall-grid {
        grid-template-columns: 1fr;
    }

    header {
        padding: 15px 20px;
    }

    .anbieter-btn {
        font-size: 14px;
        padding: 10px 14px;
    }

}
.anbieter-start p {
    margin-top: 10px;
    margin-bottom: 20px;
}
.notfall-item.active {
    border-color: #ff3b30;
    background: #fff1ef;
    color: #ff3b30;
    box-shadow: 0 10px 25px rgba(255,59,48,0.20);
}
.notfall-item {
    transition: all 0.2s ease;
}