  :root {
    --brand-dark-blue: #03246B;
    --brand-teal: #51b6c3;
    --brand-teal-hover: #3fa1ad;
  }


  .badge-custom {
    background-color: rgba(81, 182, 195, 0.15);
    color: var(--brand-dark-blue);
    font-weight: 600;
  }

  .text-brand-blue {
      font-size: 30px !important;
    color: var(--brand-dark-blue);
  }

  .accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--brand-teal);
    border-radius: 2px;
  }

  .btn-brand-teal {
    background-color: var(--brand-teal);
    color: #ffffff;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-brand-teal:hover {
    background-color: var(--brand-teal-hover);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .feature-icon-box {
    width: 38px;
    height: 38px;
    background-color: rgba(3, 36, 107, 0.08);
    color: var(--brand-dark-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .consultation-img-wrapper {
    position: relative;
  }

  .consultation-img-wrapper img {
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(3, 36, 107, 0.12);
    border: 4px solid #ffffff;
  }

  .experience-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--brand-dark-blue);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  @media (max-width: 991px) {
    .experience-card {
      position: relative;
      bottom: 0;
      left: 0;
      margin-top: -30px;
      margin-left: 15px;
      display: inline-block;
    }
  }

  /* Root Color Palette */
  :root {
    --tm-dark-blue: #03246B;
    --tm-teal: #51b6c3;
    --tm-teal-light: rgba(81, 182, 195, 0.12);
    --tm-teal-hover: #3fa1ad;
  }

  /* Utility Classes */
  .tm-text-blue { color: var(--tm-dark-blue); }
  .tm-text-teal { color: var(--tm-teal); }

  /* Section 1: How It Works */
  .tm-how-it-works {
    background-color: #ffffff;
  }
  .tm-step-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  .tm-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(3, 36, 107, 0.08);
    border-color: var(--tm-teal);
  }
  .tm-step-number {
    width: 42px;
    height: 42px;
    background-color: var(--tm-dark-blue);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  /* Section 2: Why Consult */
  .tm-why-consult {
    background-color: #f4f8fb;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
  }
  .tm-feature-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(3, 36, 107, 0.05);
    height: 100%;
    border-top: 4px solid var(--tm-teal);
  }

  /* Section 3: Specialties Grid */
  .tm-specialties {
    background-color: #ffffff;
  }
  .tm-spec-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
  }
  .tm-spec-card:hover {
    background-color: #ffffff;
    border-color: var(--tm-teal);
    box-shadow: 0 8px 20px rgba(81, 182, 195, 0.15);
  }
  .tm-spec-icon {
    width: 50px;
    height: 50px;
    background-color: var(--tm-teal-light);
    color: var(--tm-dark-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }

  /* NEW SECTION 4: Fee & Pricing Card */
  .tm-pricing-section {
    background-color: #f8fafc;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
  }
  .tm-pricing-card {
    background-color: #ffffff;
    border: 2px solid var(--tm-teal);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(3, 36, 107, 0.08);
    overflow: hidden;
  }
  .tm-pricing-header {
    background-color: var(--tm-dark-blue);
    color: #ffffff;
    padding: 2rem;
  }

  /* NEW SECTION 5: FAQs Accordion */
  .tm-faq-section {
    background-color: #ffffff;
  }
  .tm-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  .tm-accordion .accordion-button {
    font-weight: 600;
    color: var(--tm-dark-blue);
    background-color: #f8fafc;
    box-shadow: none !important;
  }
  .tm-accordion .accordion-button:not(.collapsed) {
    background-color: var(--tm-teal-light);
    color: var(--tm-dark-blue);
  }
  .tm-accordion .accordion-button::after {
    filter: brightness(0.5);
  }

  /* Unique Section Styles */
  .tm-target-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--tm-teal);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    height: 100%;
    transition: all 0.2s ease;
  }
  .tm-target-card:hover {
    box-shadow: 0 5px 15px rgba(3, 36, 107, 0.08);
    transform: translateY(-2px);
  }

  .tm-package-box {
    background: linear-gradient(135deg, #03246B 0%, #063496 100%);
    border-radius: 16px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .tm-package-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--tm-teal);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
  }
  .tm-feature-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .tm-booking-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
  }
  .tm-contact-link {
    color: var(--tm-dark-blue);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .tm-contact-link:hover {
    color: var(--tm-teal);
  }



