  :root {
      --brand: #059669;
      --brand-dark: #047857;
      --brand-light: #ecfdf5;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --background: #f3f7f5;
      --white: #ffffff;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: var(--background);
      color: var(--text);
      font-family:
          Inter,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          Roboto,
          Helvetica,
          Arial,
          sans-serif;
      line-height: 1.75;
  }

  /* =========================
     NAVBAR
  ========================= */

  .navbar {
      background: var(--white) !important;
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
  }

  .navbar-brand {
      color: var(--brand) !important;
      font-size: 1.15rem;
      font-weight: 750;
      letter-spacing: -0.02em;
  }

  .navbar-nav {
      gap: 8px;
  }

  .navbar .nav-link {
      color: #4b5563 !important;
      font-weight: 500;
      padding: 8px 14px !important;
      border-radius: 8px;
      transition: all 0.2s ease;
  }

  .navbar .nav-link:hover {
      color: var(--brand) !important;
      background: var(--brand-light);
  }

  .navbar .nav-link.active {
      color: var(--brand) !important;
      background: var(--brand-light);
      font-weight: 600;
  }

  .navbar-toggler {
      border: 1px solid var(--border);
  }

  .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
  }

  /* =========================
     MAIN PAGE
  ========================= */

  .page-container {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 60px 20px;
  }

  /* =========================
     CONTENT CARD
  ========================= */

  .content-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 55px 65px;
      box-shadow:
          0 4px 6px rgba(0, 0, 0, 0.02),
          0 15px 40px rgba(0, 0, 0, 0.05);
  }

  /* =========================
     HEADINGS
  ========================= */

  .content-card h1 {
      margin: 0 0 8px;
      color: #111827;
      font-size: 2.25rem;
      font-weight: 750;
      line-height: 1.25;
      letter-spacing: -0.035em;
  }

  .content-card h2 {
      margin-top: 42px;
      margin-bottom: 16px;
      color: #111827;
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: -0.015em;
      position: relative;
  }

  .content-card h2::before {
      content: "";
      display: inline-block;
      width: 4px;
      height: 20px;
      background: var(--brand);
      border-radius: 4px;
      margin-right: 10px;
      vertical-align: -2px;
  }

  .content-card h3 {
      margin-top: 30px;
      margin-bottom: 12px;
      color: #111827;
      font-size: 1.1rem;
      font-weight: 650;
  }

  /* =========================
     TEXT
  ========================= */

  .content-card p {
      margin: 0 0 18px;
      color: #4b5563;
      font-size: 1rem;
  }

  .content-card strong {
      color: #1f2937;
      font-weight: 650;
  }

  .content-card ul,
  .content-card ol {
      margin: 0 0 22px;
      padding-left: 24px;
      color: #4b5563;
  }

  .content-card li {
      margin-bottom: 8px;
      padding-left: 4px;
  }

  /* =========================
     LINKS
  ========================= */

  .content-card a {
      color: var(--brand);
      font-weight: 500;
      text-decoration: none;
  }

  .content-card a:hover {
      color: var(--brand-dark);
      text-decoration: underline;
  }

  /* =========================
     LAST UPDATED
  ========================= */

  .last-updated {
      display: inline-block;
      margin: 0 0 30px;
      padding: 6px 12px;
      background: var(--brand-light);
      color: var(--brand-dark) !important;
      border-radius: 6px;
      font-size: 0.85rem !important;
      font-weight: 600;
  }

  /* =========================
     DIVIDER
  ========================= */

  .section-divider {
      height: 1px;
      border: 0;
      background: var(--border);
      margin: 0 0 35px;
  }

  /* =========================
     HERO / HOME
  ========================= */

  .hero {
      text-align: center;
      padding: 80px 20px;
  }

  .hero-badge {
      display: inline-block;
      padding: 7px 14px;
      margin-bottom: 18px;
      background: var(--brand-light);
      color: var(--brand-dark);
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
  }

  .hero h1 {
      max-width: 700px;
      margin: 0 auto 18px;
      color: #111827;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.045em;
  }

  .hero p {
      max-width: 650px;
      margin: 0 auto 30px;
      color: var(--muted);
      font-size: 1.1rem;
  }

  /* =========================
     BUTTONS
  ========================= */

  .btn-brand {
      display: inline-block;
      background: var(--brand);
      color: white !important;
      border: none;
      border-radius: 9px;
      padding: 11px 20px;
      font-weight: 600;
      text-decoration: none !important;
      transition: all 0.2s ease;
  }

  .btn-brand:hover {
      background: var(--brand-dark);
      color: white !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 15px rgba(5, 150, 105, 0.2);
  }

  /* =========================
     CARDS
  ========================= */

  .info-card {
      height: 100%;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      transition: all 0.2s ease;
  }

  .info-card:hover {
      border-color: rgba(5, 150, 105, 0.35);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
  }

  .info-card-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      background: var(--brand-light);
      color: var(--brand);
      border-radius: 10px;
      font-size: 1.2rem;
  }

  .info-card h3 {
      margin: 0 0 8px;
      color: #111827;
      font-size: 1.1rem;
      font-weight: 700;
  }

  .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
  }

  /* =========================
     FOOTER
  ========================= */

  footer {
      margin-top: 30px;
      background: #111827 !important;
      color: #9ca3af;
      padding: 35px 0;
  }

  footer p {
      margin-bottom: 12px;
      font-size: 0.9rem;
  }

  footer a {
      color: #d1d5db !important;
      text-decoration: none;
      margin: 0 8px;
      font-size: 0.9rem;
      transition: color 0.2s ease;
  }

  footer a:hover {
      color: #6ee7b7 !important;
  }

  /* =========================
     CONTACT
  ========================= */

  .contact-box {
      margin-top: 30px;
      padding: 20px 24px;
      background: var(--brand-light);
      border: 1px solid #a7f3d0;
      border-radius: 12px;
  }

  .contact-box p {
      margin: 0;
  }

  /* =========================
     MOBILE
  ========================= */

  @media (max-width: 768px) {

      .page-container {
          padding: 25px 12px;
      }

      .content-card {
          padding: 32px 22px;
          border-radius: 14px;
      }

      .content-card h1 {
          font-size: 1.8rem;
      }

      .content-card h2 {
          font-size: 1.2rem;
          margin-top: 32px;
      }

      .content-card p {
          font-size: 0.95rem;
      }

      .hero {
          padding: 55px 15px;
      }

      .hero h1 {
          font-size: 2.2rem;
      }

      .hero p {
          font-size: 1rem;
      }

      .navbar-nav {
          padding-top: 12px;
      }

      .navbar .nav-link {
          padding: 10px 12px !important;
      }
  }

  /* =========================
     VERY SMALL SCREENS
  ========================= */

  @media (max-width: 400px) {

      .content-card {
          padding: 25px 17px;
      }

      .content-card h1 {
          font-size: 1.6rem;
      }

      .hero h1 {
          font-size: 1.9rem;
      }
  }