    :root {
      --bigo-primary: #2563eb;
      --bigo-accent: #f97316;
      --bigo-dark: #0f172a;
      --bigo-muted: #6b7280;
      --bigo-card: #ffffff;
      --bigo-radius: 18px;
      --bigo-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
    }

    body {
      font-family: "Poppins", sans-serif;
      color: #111827;
      overflow-x: hidden;
    }

    /* Hero */
    #hero-services {
      background: linear-gradient(135deg, #1d4ed8, #020617 68%);
      padding: 130px 0 90px;
      color: #eef2ff;
      text-align: left;
    }

    #hero-services h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    #hero-services p {
      font-size: 1.05rem;
      color: #c7d2fe;
      max-width: 640px;
    }

    /* Cards */
    .service-card {
      background: var(--bigo-card);
      border-radius: var(--bigo-radius);
      padding: 28px 26px 24px;
      box-shadow: var(--bigo-shadow);
      border: 1px solid rgba(226, 232, 240, 0.9);
      position: relative;
      overflow-wrap: anywhere;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 12px;
      bottom: 12px;
      width: 4px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ef4444, #f97316);
    }

    .service-card h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--bigo-dark);
    }

    .service-card p {
      font-size: 0.92rem;
      color: var(--bigo-muted);
    }

    .service-icon {
      font-size: 2.2rem;
      color: var(--bigo-primary);
      margin-bottom: 14px;
    }

    /* Section Title */
    .section-title {
      text-align: center;
      margin-bottom: 35px;
    }

    .section-title h2 {
      font-size: 0.95rem;
      letter-spacing: 0.14em;
      color: var(--bigo-primary);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .section-title h3 {
      font-size: 2rem;
      font-weight: 800;
      color: #0f172a;
    }

    .section-title h3 span {
      color: var(--bigo-primary);
    }

    /* CTA */
    .cta-box {
      background: linear-gradient(135deg, #2563eb, #1e40af);
      border-radius: 22px;
      padding: 42px 35px;
      text-align: center;
      color: #ffffff;
      box-shadow: var(--bigo-shadow);
      margin-top: 40px;
    }

    .cta-box h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .cta-box p {
      font-size: 1rem;
      margin-bottom: 15px;
      opacity: 0.95;
    }

    .cta-box a {
      background: #f97316;
      padding: 10px 22px;
      border-radius: 999px;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      display: inline-block;
    }

    /* FAQ */
    .faq-item {
      background: #ffffff;
      border-radius: 14px;
      padding: 14px 16px 14px 20px;
      border: 1px solid rgba(226, 232, 240, 0.95);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
      position: relative;
      overflow-wrap: anywhere;
      margin-bottom: 12px;
    }

    .faq-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      bottom: 10px;
      width: 3px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ef4444, #f97316);
    }

    .faq-item h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .faq-item p {
      font-size: 0.9rem;
      color: var(--bigo-muted);
      margin-bottom: 0;
    }