:root {
  
  --bg-main: #F3EAFE;          /* soft lavender background */
  --card-bg: #F3EAFE;          /* same as bg for hero */
  --heading: #7C3AED;          /* strong purple */
  --accent: #8B5CF6;           /* buttons, arrows */
  --accent-soft: #EDE9FE;      /* icon circles */
  --text-main: #4C1D95;        /* deep readable purple */
  --text-muted: #6B21A8;       /* secondary text */
  --border: #DDD6FE;
  --shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
  --radius: 24px;
}



    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #ffffff;
      color: var(--text);
      line-height: 1.5;
    }

    /* MAIN WRAPPER – same layout as other dept pages */
    .page-wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 2.2rem 1.4rem 2.8rem;
      
    }

    @media (max-width: 1200px) {
      .page-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

    /* HEADER */
    .page-title {
      margin-bottom: 1.4rem;
    }

    .page-title h2 {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: clamp(2rem, 2.4vw, 2.2rem);
      color: var(--heading);
      margin-bottom: 0.3rem;
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

    .title-icon-circle {
      display:inline-flex;
      width:28px;
      height:28px;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:#E5F3FF;
      border:1px solid #cfe4ff;
    }

    .page-title span {
      font-size: 0.95rem;
      color: var(--muted);
    }

    /* GENERIC CARD */
    .card {
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 0.9rem 1rem;
      box-shadow: var(--shadow);
      margin-bottom: 0.9rem;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .card:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
    }

    h4.section-heading {
      font-family: "Merriweather", "Playfair Display", serif;
      font-size: 1.02rem;
      color: var(--subheading);
      font-weight: 600;
      margin-bottom: 0.35rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .heading-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--pointer);
    }

    p {
      font-size: 0.9rem;
      color: var(--text);
    }

    ul {
      list-style: disc;
      margin-left: 1.1rem;
      font-size: 0.9rem;
    }

    ul li {
      margin-bottom: 0.18rem;
    }

    /* QUICK ACTIONS */
    .quick-actions-card {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .quick-actions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.7rem;
      margin-top: 0.3rem;
    }

    .qa-link {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      padding: 0.7rem 0.6rem;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid #dbe2ea;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--heading);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
      text-align: center;
      transition: transform 0.16s ease, box-shadow 0.16s ease;
    }

    .qa-link i {
      font-size: 1.2rem;
      color: #0B74B5;
    }

    .qa-link:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
    }

    .qa-note {
      font-size: 0.82rem;
      color: var(--muted);
    }

    /* MINI GRID CARDS FOR FLOWS */
    .mini-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 0.7rem;
      margin-top: 0.3rem;
    }

    .mini-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #dde2ea;
      padding: 0.6rem 0.7rem;
      font-size: 0.86rem;
    }

    .mini-title {
      font-weight: 600;
      color: var(--heading);
      margin-bottom: 0.18rem;
      font-size: 0.9rem;
    }

    .mini-card ul {
      margin-left: 1rem;
      font-size: 0.86rem;
    }

    .mini-card ul li {
      margin-bottom: 0.16rem;
    }

    /* TABLES */
    .table-wrap {
      margin-top: 0.3rem;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #dbe2ea;
      background: #ffffff;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.86rem;
    }

    thead {
      background: #ecf5ff;
    }

    th, td {
      padding: 0.42rem 0.5rem;
      border-bottom: 1px solid #e5e7eb;
      text-align: left;
    }

    th {
      font-weight: 600;
      color: var(--heading);
    }

    tbody tr:nth-child(even) {
      background: #f9fafb;
    }

    /* SMALL NOTE STRIP */
    .note-strip {
      border-radius: 10px;
      border: 1px dashed #bfdbfe;
      background: #eff6ff;
      padding: 0.5rem 0.7rem;
      font-size: 0.86rem;
      color: var(--pointer);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.2rem;
    }

    .note-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #dbeafe;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    /* BUTTONS INSIDE ONLINE SERVICES */
    .btn-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0.6rem;
      margin-top: 0.4rem;
    }

    .primary-btn,
    .secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      border: none;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
    }

    .primary-btn {
      background: #0B74B5;
      color: #ffffff;
      box-shadow: 0 10px 22px rgba(11, 116, 181, 0.25);
    }

    .primary-btn:hover {
      box-shadow: 0 14px 28px rgba(11, 116, 181, 0.33);
    }

    .secondary-btn {
      background: #e5f3ff;
      color: #0B74B5;
      border: 1px solid #bfdbfe;
    }

    .small-text {
      font-size: 0.84rem;
      color: var(--muted);
      margin-top: 0.3rem;
    }