:root {
      --primary: #f59e0b;
      --accent: #22c55e;
    }
    body { font-family: system-ui, sans-serif; }
    header.site-header { background: var(--primary); color: #fff; padding: 1rem 2rem; }
    header.site-header a { color: #fff; text-decoration: none; }
    header.site-header .brand { font-size: 1.4rem; font-weight: bold; }
    nav.topnav { background: #1f2937; padding: 0.5rem 2rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
    nav.topnav a { color: #e5e7eb; text-decoration: none; font-size: 0.95rem; padding: 0.3rem 0.6rem; border-radius: 4px; }
    nav.topnav a:hover { background: var(--primary); color: #fff; }
    footer.site-footer { background: #1f2937; color: #9ca3af; padding: 2rem; margin-top: 3rem; }
    footer.site-footer a { color: var(--accent); }
    footer.site-footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
    .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1f2937; color: #fff; padding: 1rem 2rem; display: none; align-items: center; justify-content: space-between; gap: 1rem; z-index: 999; }
    .cookie-banner button { background: var(--primary); border: none; color: #fff; padding: 0.5rem 1.2rem; border-radius: 4px; cursor: pointer; }
    .hero { background: linear-gradient(135deg, #fffbeb 0%, #f0fdf4 100%); padding: 3rem 2rem; text-align: center; }
    .hero h1 { color: var(--primary); font-size: 2.2rem; }
    .section-toc { background: #f9fafb; border-left: 4px solid var(--primary); padding: 1rem 1.5rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
    .section-toc h3 { margin: 0 0 0.5rem; color: var(--primary); font-size: 1rem; }
    .section-toc ol { margin: 0; padding-left: 1.2rem; }
    .fact-panel { background: #fffbeb; border: 1px solid var(--primary); border-radius: 8px; padding: 1.2rem; margin: 1rem 0; }
    .related-links { background: #f0fdf4; border: 1px solid var(--accent); border-radius: 8px; padding: 1rem 1.5rem; margin: 2rem 0; }
    .related-links h4 { color: var(--accent); margin: 0 0 0.5rem; }
    .matrix-link { display: inline-block; background: var(--primary); color: #fff; padding: 0.4rem 1rem; border-radius: 4px; text-decoration: none; font-size: 0.9rem; margin: 0.5rem 0; }
    table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
    th { background: var(--primary); color: #fff; padding: 0.6rem 1rem; text-align: left; }
    td { padding: 0.5rem 1rem; border-bottom: 1px solid #e5e7eb; }
    tr:nth-child(even) td { background: #f9fafb; }
    details summary { cursor: pointer; font-weight: bold; color: var(--primary); padding: 0.5rem 0; }
    .checklist li { list-style: none; padding: 0.3rem 0; }
    .checklist li::before { content: "✓ "; color: var(--accent); font-weight: bold; }
    #form-errors { background: #fee2e2; color: #991b1b; padding: 0.8rem; border-radius: 6px; display: none; margin-bottom: 1rem; }
    .star { color: var(--primary); }
    .review-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.5rem; }
    .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
    .service-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.5rem; text-align: center; }
    .service-card img { width: 100%; max-height: 160px; object-fit: contain; margin-bottom: 1rem; }
    .breadcrumb { font-size: 0.85rem; color: #6b7280; margin-bottom: 1rem; }
    .breadcrumb a { color: var(--primary); }
    aside.info-box { background: #eff6ff; border-left: 4px solid #6366f1; padding: 1rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
    blockquote { border-left: 4px solid var(--primary); padding: 0.8rem 1.5rem; background: #fffbeb; border-radius: 0 8px 8px 0; font-style: italic; }
    .timeline-steps ol { list-style: none; padding: 0; counter-reset: step; }
    .timeline-steps li { counter-increment: step; padding: 0.8rem 0 0.8rem 3rem; position: relative; border-left: 3px solid var(--primary); margin-left: 1rem; }
    .timeline-steps li::before { content: counter(step); position: absolute; left: -1.2rem; top: 0.6rem; background: var(--primary); color: #fff; width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.85rem; }
