﻿*, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: #f9fafb;
      margin: 0;
      padding: 0;
      color: #111827;
    }
 
    /* ── Hero gradient blob ── */
    .hero-blob {
      background: radial-gradient(ellipse 70% 55% at 50% -10%, #d1fae5 0%, transparent 70%);
    }
 
    /* ── Pill badge ── */
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e8f5ee;
      color: #0D684B;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 4px 14px;
      border-radius: 999px;
      letter-spacing: 0.03em;
    }
    .badge-pill::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #0D684B;
      display: inline-block;
    }
 
    /* ── Buttons ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #0D684B;
      color: #fff;
      font-weight: 600;
      font-size: 0.875rem;
      padding: 12px 26px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      transition: background 0.18s, transform 0.12s;
      text-decoration: none;
    }
    .btn-primary:hover { background: #0A523B; transform: translateY(-1px); }
 
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #0D684B;
      font-weight: 600;
      font-size: 0.875rem;
      padding: 11px 26px;
      border-radius: 999px;
      border: 1.5px solid #0D684B;
      cursor: pointer;
      transition: background 0.18s, color 0.18s;
      text-decoration: none;
    }
    .btn-outline:hover { background: #0D684B; color: #fff; }
 
    /* ── Service card ── */
    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 28px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover {
      box-shadow: 0 8px 28px rgba(13,104,75,0.12), 0 0 0 1.5px #0D684B22;
      transform: translateY(-3px);
    }
 
    .service-card.danger-card {
      background: linear-gradient(135deg, #FDF2F2 0%, #FADCDD 100%);
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .service-card.danger-card:hover {
      box-shadow: 0 8px 28px rgba(185,42,42,0.14);
    }
 
    .icon-wrap {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: #E5F4EE;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .icon-wrap.danger { background: #FDDEDE; }
 
    .card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #111827;
      margin: 0;
    }
    .card-title.danger { color: #B92A2A; }
 
    .card-desc {
      font-size: 0.8rem;
      color: #4B5563;
      line-height: 1.55;
      margin: 0;
      flex: 1;
    }
    .card-desc.danger { color: #7F2727; }
 
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #0D684B;
      background: #F0F9F5;
      padding: 7px 16px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
      width: fit-content;
    }
    .card-link:hover { background: #d5f0e4; }
 
    .card-link.danger-btn {
      background: #B92A2A;
      color: #fff;
      width: 100%;
      justify-content: center;
    }
    .card-link.danger-btn:hover { background: #962222; }
 
    /* ── Carousel nav ── */
    .nav-btn {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 1.5px solid #d1d5db;
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #4B5563;
      transition: border-color 0.15s, color 0.15s;
    }
    .nav-btn:hover { border-color: #0D684B; color: #0D684B; }

    .banner-btn-white {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #0D684B;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.12s;
    white-space: nowrap;
  }
  .banner-btn-white:hover { background: #e8f5ee; transform: translateY(-1px); }
 
  .banner-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.45);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .banner-btn-ghost:hover { background: rgba(255,255,255,0.28); }