:root {
    --navy: #183074;
    --navy-dark: #0a183f;
    --navy-mid: #2b4691;
    --gold: #d4960a;
    --gold-light: #e68820;
    --gold-pale: #FEF3D0;
    --gold-bg: #FDF8EC;
    --white: #ffffff;
    --off-white: #F9F8F6;
    --light-gray: #F2F1EE;
    --border: #E0DDD6;
    --text-main: #1C1C1C;
    --text-body: #3D3D3D;
    --text-muted: #6B6B6B;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body{
    font-size: 16px;
    line-height: 28px;
    color: var(--text-body);
    margin: 5px 0;
  }

  /* SECTION TITLES */
  .section-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .section-label {
    display: inline-block;
    width: 40px; height: 3px;
    background: var(--gold);
    margin-bottom: 1rem;
    border-radius: 2px;
  }

  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 42px;
  }

  .section-header p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-body);
    margin: 0 auto;
  }
  .common{
    padding: 60px 0;
    overflow: hidden;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .service-card:hover {
    box-shadow: 0 8px 32px rgba(27,58,107,0.1);
    transform: translateY(-2px);
  }

  /* Image Placeholder */
  .card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0 0 10px;
  }
  .card-body {
    padding: 20px 10px 10px 20px;
  }
   .card-body h5{
      font-size: 20px ;
      line-height: 30px;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .card-body h6{
      font-size: 18px ;
      line-height: 28px;
      color: var(--navy);
    }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .card-title a {
    color: inherit;
    text-decoration: none;
  }

    .card-body ul{
      padding-left: 0;
    }

  .card-title a:hover { color: var(--gold); }

  .card-subtitle {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .card-subtitle::before {
    content: '';
    display: inline-block;
    width: 18px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  .card-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  .card-list {
    list-style: none;
    margin-bottom: 1.5rem;
  }

  .card-list li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.6;
  }

  .card-list li:last-child { border-bottom: none; }

  .card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }

  .card-list li strong {
    color: var(--navy);
    font-weight: 600;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.04em;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--gold);
    transition: color 0.2s, border-color 0.2s;
  }

  .card-link:hover { color: var(--gold); }

  .card-link svg { width: 14px; height: 14px; }

  /* FULL WIDTH CARD */
  .service-card.full-width {
    grid-column: 1 / -1;
  }

  .service-card.full-width .card-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 20px;
  }

    .overview-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 20px;
    margin-top: 15px;
  }

  .overview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .overview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 42px;
    color: var(--navy);
    margin-bottom: 20px;
  }

  .overview-text p {
    margin-bottom: 1rem;
  }

  .overview-sidebar {
    background: var(--navy);
    color: var(--white);
    padding: 2rem;
    border-radius: 2px;
    position: relative;
  }

  .overview-sidebar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
  }

  .overview-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    line-height: 34px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .sidebar-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
  }

  .sidebar-item:last-child { border-bottom: none; }

  .sidebar-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    min-width: 32px;
  }

  .sidebar-detail strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2px;
  }