
    :root {
      font-size: 16px;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.7;
      color: #222;
      background-color: #f3f4f6;
    }

    .page-wrapper {
      padding: 1.5rem 1rem 3rem;
    }

    .content {
      max-width: 980px;
      margin: 0 auto;
      background-color: #ffffff;
      padding: 2rem 1.5rem 2.5rem;
      border-radius: 1rem;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    }

    @media (min-width: 768px) {
      .page-wrapper {
        padding: 3rem 1.5rem 4rem;
      }
      .content {
        padding: 2.5rem 2.5rem 3rem;
      }
    }

    /* HERO + IMAGE GRID */
    .hero-layout {
      display: grid;
      gap: 1.5rem;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 900px) {
      .hero-layout {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        gap: 2rem;
      }
    }

    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.3;
      color: #111827;
      margin-top: 1.8rem;
      margin-bottom: 0.75rem;
    }

    h1 {
      font-size: 2rem;
      margin-top: 0;
    }

    h2 {
      font-size: 1.35rem;
      margin-top: 2.1rem;
    }

    h3 {
      font-size: 1.1rem;
      margin-top: 1.4rem;
    }

    p {
      margin: 0.4rem 0 0.9rem;
      color: #374151;
    }

    ul, ol {
      padding-left: 1.2rem;
      margin-top: 0.4rem;
      margin-bottom: 1rem;
      color: #374151;
    }

    li {
      margin-bottom: 0.3rem;
    }

    .lead {
      font-size: 1.02rem;
      color: #111827;
    }

    .highlight-box {
      border-left: 4px solid #4b5563;
      background-color: #f3f4f6;
      padding: 0.9rem 1rem;
      border-radius: 0.5rem;
      margin: 1.4rem 0;
      font-size: 0.95rem;
    }

    .small {
      font-size: 0.9rem;
      color: #6b7280;
    }

    /* CTA */
    .cta-section {
      margin-top: 2.5rem;
      padding: 1.7rem 1.5rem 1.9rem;
      border-radius: 0.9rem;
      background: linear-gradient(135deg, #0b1120, #020617);
      color: #f9fafb;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.18), transparent 55%);
      opacity: 0.7;
      pointer-events: none;
    }

    .cta-section-inner {
      position: relative;
      z-index: 1;
    }

    .cta-section h2 {
      color: #f9fafb;
      margin-top: 0;
      margin-bottom: 0.75rem;
    }

    .cta-section p {
      color: #e5e7eb;
      margin-bottom: 1.25rem;
    }

    .btn-cta {
      display: inline-block;
      padding: 0.85rem 1.8rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      border: none;
      cursor: pointer;
      background: #fbbf24;
      color: #111827;
      font-size: 0.98rem;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      white-space: nowrap;
    }

    .btn-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.45);
      background: #f59e0b;
    }

    .btn-cta:active {
      transform: translateY(0);
      box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4);
    }

    .cta-note {
      font-size: 0.82rem;
      color: #9ca3af;
      margin-top: 0.4rem;
    }

    /* IMAGE STYLES */
    figure {
      margin: 1.4rem 0;
    }

    .hero-image {
      margin: 0;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      max-height: 420px;
      border-radius: 1rem;
      display: block;
      object-fit: cover;
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.28);
    }

    .hero-image figcaption {
      font-size: 0.85rem;
      color: #6b7280;
      margin-top: 0.45rem;
      text-align: center;
    }

    .section-illustration img {
      width: 100%;
      height: auto;
      border-radius: 0.9rem;
      display: block;
      object-fit: cover;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    }

    .section-illustration figcaption {
      font-size: 0.84rem;
      color: #6b7280;
      margin-top: 0.35rem;
      text-align: left;
    }

    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 0.6rem;
    }

    .image-grid img {
      width: 100%;
      height: 140px;
      border-radius: 0.7rem;
      object-fit: cover;
      display: block;
    }

    @media (min-width: 768px) {
      .image-grid img {
        height: 170px;
      }
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 0.7rem;
      margin-top: 0.7rem;
      margin-bottom: 0.2rem;
    }

    .badge {
      font-size: 0.78rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      background-color: #f9fafb;
      color: #4b5563;
      white-space: nowrap;
    }

    /* FAQ */
    .faq-block {
      border-top: 1px solid #e5e7eb;
      margin-top: 2rem;
      padding-top: 1.5rem;
    }

    .faq-item {
      margin-bottom: 1.3rem;
    }

    .faq-question {
      font-weight: 600;
      color: #111827;
      margin-bottom: 0.2rem;
    }
  