* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* --- Hero --- */
.hero {
    background-color: #cc333d;
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
}

.hero .logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.hero .tagline {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.92;
}

/* --- Main content --- */
.content {
    max-width: 900px;
    margin: -32px auto 0;
    padding: 0 24px 48px;
    position: relative;
    z-index: 1;
}

/* --- Intro card --- */
.intro-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
    font-size: 15px;
    text-align: justify;
    line-height: 1.7;
}

/* --- Section --- */
.section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-header .accent-bar {
    width: 4px;
    height: 24px;
    background-color: #CE1B28;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2C2C2C;
}

/* --- Cards --- */
.card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    text-align: justify;
}

/* --- Step card (Was müssen Sie tun?) --- */
.step-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #CE1B28;
    line-height: 1.7;
    text-align: justify;
}

/* --- Services grid --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    line-height: 1.6;
    text-align: left;
}

.service-item .num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #CE1B28;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.service-item p {
    font-size: 14px;
}

/* Full-width service item for odd last item */
.service-item.full-width {
    grid-column: 1 / -1;
}

/* --- CTA --- */
.cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #CE1B28;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #b40612;
}

/* --- Footer note --- */
.footnote {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 48px;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .hero {
        padding: 48px 20px 36px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .content {
        padding: 0 16px 32px;
    }

    .intro-card,
    .card,
    .step-card {
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item.full-width {
        grid-column: auto;
    }
}
