
    :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;
    }

    .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;
      }
    }

    /* TOP LAYOUT */
    .top-row {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 840px) {
      .top-row {
        grid-template-columns: 1fr;
      }
    }

    .page-title h2 {
      font-family: "Merriweather", 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.94rem;
      color: var(--muted);
    }

    .simple-list {
      margin-top: 0.6rem;
      list-style: none;
      font-size: 0.9rem;
    }

    .simple-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.18rem;
      align-items: flex-start;
    }

    .simple-list i {
      color: var(--pointer);
      font-size: 0.78rem;
      margin-top: 0.2rem;
    }

    /* QUICK ACTION PANEL */
    .quick-panel {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px dashed #93c5fd;
      padding: 0.9rem 0.95rem;
      box-shadow: var(--shadow);
    }

    .quick-panel-title {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--subheading);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
    }

    .quick-panel-title i {
      font-size: 1rem;
    }

    .action-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.6rem 1.1rem;
      border-radius: 10px;
      border: none;
      background: var(--btn-bg);
      color: var(--btn-text);
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 0.45rem;
      cursor: pointer;
    }

    .action-btn.secondary {
      background: #e5f3ff;
      color: #0B74B5;
      border: 1px solid #bfdbfe;
    }

    .action-btn i {
      font-size: 0.9rem;
    }

    .quick-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.2rem;
    }

    /* CARD */
    .card {
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 0.85rem 0.95rem;
      box-shadow: var(--shadow);
      margin-bottom: 0.8rem;
      transition: transform 0.2s ease, box-shadow 0.2s 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", 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);
    }

    ul.bullet-list {
      list-style: disc;
      margin-left: 1.1rem;
      font-size: 0.9rem;
    }

    ul.bullet-list li {
      margin-bottom: 0.18rem;
    }

    .grid-2 {
      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 #dbe2ea;
      padding: 0.6rem 0.7rem;
      font-size: 0.86rem;
    }

    .mini-title {
      font-weight: 600;
      color: var(--heading);
      margin-bottom: 0.1rem;
      font-size: 0.9rem;
    }

    .mini-text {
      color: var(--muted);
      font-size: 0.85rem;
    }

    /* TABLE */
    .table-wrap {
      margin-top: 0.25rem;
      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.4rem 0.5rem;
      text-align: left;
      border-bottom: 1px solid #e5e7eb;
    }

    th {
      font-weight: 600;
      color: var(--heading);
    }

    tbody tr:nth-child(even) {
      background: #f9fafb;
    }
  