        :root {
            --primary-black: #0c1015;
            --accent-gold: #c5a059;
            --accent-gold-dark: #9a7b3c;
            --accent-blue: #1c3d5a;
            --pure-white: #ffffff;
            --bg-light: #f6f8fb;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --shadow-card: 0 16px 36px rgba(12, 16, 21, 0.06);
            --gold-gradient: linear-gradient(135deg, #c5a059 0%, #ecd599 50%, #9a7b3c 100%);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #fff; color: var(--text-dark); line-height: 1.65; }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-black); }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1260px; margin: 0 auto; padding: 0 1.5rem; }

        .navbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 86px; }
        .brand-logo img { height: 50px; }
        .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
        .btn-gold { background: var(--gold-gradient); color: #121212 !important; font-weight: 600; padding: 0.7rem 1.6rem; border-radius: 26px; }

        .page-banner { padding: 5rem 0; background: linear-gradient(rgba(12, 16, 21, 0.85), rgba(28, 61, 90, 0.85)), url('https://stratum.mu/wp-content/uploads/2026/08/47dd67c3-2555-4e95-92f0-2d9e2d96c86f.jpg') center/cover; color: #fff; text-align: center; }
        .page-banner h1 { font-size: 3rem; color: #fff; margin-bottom: 0.5rem; }

        .section-padding { padding: 5.5rem 0; }
        .service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 4.5rem; }
        .service-block.reverse { direction: rtl; }
        .service-block.reverse .service-desc { direction: ltr; }
        
        .service-desc h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
        .service-desc ul { list-style: none; margin-top: 1.2rem; }
        .service-desc ul li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; color: #475569; }
        .service-desc ul li i { color: var(--accent-gold); margin-top: 0.25rem; }
        
        .service-box-card { background: var(--bg-light); border-radius: 12px; padding: 3rem; border: 1px solid #e2e8f0; }

        .qm-banner { background: var(--accent-blue); color: #fff; padding: 4rem 0; border-radius: 12px; margin: 3rem 0; }
        .affil-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
        .badge-box { background: #fff; border: 1px solid #e2e8f0; padding: 1.2rem 2rem; border-radius: 8px; font-weight: 600; }

        footer { background-color: var(--primary-black); color: #94a3b8; padding: 4.5rem 0 2rem 0; margin-top: 5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.82rem; }

        @media (max-width: 992px) {
            .service-block { grid-template-columns: 1fr; }
            .service-block.reverse { direction: ltr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
/* ============================================
   SERVICES PAGE — REFINED GOLD DESIGN (matches index service-card)
   ============================================ */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4.5rem;
}
.service-box-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-top: 3px solid var(--accent-gold);
    border-radius: 14px;
    padding: 3rem 2.4rem;
    box-shadow: 0 14px 34px rgba(12, 16, 21, 0.05);
    overflow: hidden;
    transition: var(--transition);
}
.service-box-card::after {
    content: '';
    position: absolute;
    right: -70px; bottom: -70px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 28px solid rgba(197, 160, 89, 0.07);
    pointer-events: none;
}
.service-box-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(154, 123, 60, 0.2);
}
.service-box-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-black);
}
.service-box-card h3::before {
    content: '';
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold-gradient);
    flex: 0 0 40px;
}
.service-box-card p { color: #5b6575; font-size: 0.96rem; line-height: 1.7; position: relative; z-index: 1; }
.qm-banner {
    background: linear-gradient(135deg, #0c1015 0%, #1c3d5a 100%);
    color: #fff;
    padding: 4rem 0;
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}
.qm-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 34px solid rgba(197, 160, 89, 0.12);
}
.affil-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
.badge-box {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-top: 3px solid var(--accent-gold);
    border-radius: 12px;
    padding: 1.4rem 2.2rem;
    font-weight: 600;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 10px 26px rgba(12, 16, 21, 0.05);
    transition: var(--transition);
}
.badge-box i { color: var(--accent-gold-dark); }
.badge-box:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(154, 123, 60, 0.18); }

@media (max-width: 992px) {
    .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
}