/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    padding: 40px 16px;
}

.meerzeit-announcement {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* --- Banner-Header --- */
.mz-header {
    background: linear-gradient(135deg, #1B7DB4 0%, #145f8a 100%);
    padding: 36px 40px 28px;
    position: relative;
    overflow: hidden;
}
.mz-header::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.mz-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.mz-header h2 {
    font-size: 1.65rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 6px;
}
.mz-header h2 strong {
    font-weight: 700;
}
.mz-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.5;
}

/* Möwen-Dekoration (SVG inline) */
.mz-seagull {
    position: absolute;
    right: 32px;
    top: 24px;
    opacity: 0.22;
}

/* --- Logo-Zeile --- */
.mz-logo-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 40px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.mz-logo-row img {
    height: 80px;
    width: auto;
}
.mz-logo-row .mz-tagline {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.45;
}
.mz-logo-row .mz-tagline strong {
    color: #1B7DB4;
}

/* --- Service-Grid --- */
.mz-body {
    padding: 32px 40px 28px;
}
.mz-intro {
    font-size: 1rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 28px;
}
.mz-intro strong { color: #1B7DB4; }

.mz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.mz-card {
    background: #f0f7fc;
    border-left: 4px solid #1B7DB4;
    border-radius: 0 8px 8px 0;
    padding: 16px 18px;
}
.mz-card .mz-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.mz-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1B7DB4;
    margin-bottom: 4px;
}
.mz-card p {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.45;
}

/* --- Highlight-Box "Alles aus einer Hand" --- */
.mz-highlight {
    background: linear-gradient(90deg, #f0f7fc 0%, #e8f4fb 100%);
    border-radius: 8px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.mz-highlight .mz-check {
    font-size: 2rem;
    flex-shrink: 0;
}
.mz-highlight p {
    font-size: 0.93rem;
    color: #333;
    line-height: 1.55;
}
.mz-highlight p strong { color: #1B7DB4; }

/* --- CTA --- */
.mz-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.mz-btn {
    display: inline-block;
    background: #1B7DB4;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.mz-btn:hover { background: #145f8a; }
.mz-btn-ghost {
    display: inline-block;
    color: #1B7DB4;
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1B7DB4;
    padding: 11px 24px;
    border-radius: 6px;
    transition: all 0.2s;
}
.mz-btn-ghost:hover { background: #1B7DB4; color: #fff; }

/* --- Footer-Note --- */
.mz-footer-note {
    padding: 16px 40px;
    background: #f0f7fc;
    border-top: 1px solid #dce8f0;
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mz-footer-note span { color: #1B7DB4; font-weight: 600; }

@media (max-width: 560px) {
    .mz-header, .mz-body, .mz-logo-row, .mz-footer-note { padding-left: 20px; padding-right: 20px; }
    .mz-header h2 { font-size: 1.3rem; }
    .mz-cta { flex-direction: column; }
    .mz-btn, .mz-btn-ghost { width: 100%; text-align: center; }
}