  /* ---------- TOKENS ---------- */
  .hn-page {
      --hn-red: #ed1c24;
      --hn-red-dark: #c4141b;
      --hn-red-tint: #fdecec;
      --hn-green: #158a4f;
      --hn-green-dark: #0f6b3d;
      --hn-green-tint: #e9f7ef;
      --hn-ink: #17202a;
      --hn-slate: #5c6773;
      --hn-line: #e7e9ee;
      --hn-paper: #f7f8fa;
      --hn-white: #ffffff;
      --hn-radius-lg: 22px;
      --hn-radius-md: 14px;
      --hn-shadow: 0 16px 40px -18px rgba(23, 32, 42, 0.18);
   
      color: var(--hn-ink);
      background: var(--hn-white);
      overflow-x: hidden;
  }

  .hn-page * {
      box-sizing: border-box;
  }

  .hn-container {
      width: 100%;
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .hn-page h1,
  .hn-page h2 {

      font-weight: 600;
      color: var(--hn-ink);
      line-height: 1.18;
      margin: 10px 0px;
      font-size: 30px;
  }
 h2 span{
    color: #ed1c24;
 }
 .faqimg{
    margin-top: 12px;
    max-width: 100%;
 }

  .hn-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      /* text-transform: uppercase; */
      color: #2b2a2a;
      background: var(--hn-red-tint);
      border: 1px solid #f7c9cb;
      padding: 7px 16px;
      border-radius: 999px;
  }

  .hn-eyebrow.hn-green {
      color: var(--hn-green-dark);
      background: var(--hn-green-tint);
      border-color: #bfe6cf;
  }

  .hn-section {
      padding: 30px 0;
  }

  .hn-section+.hn-section {
      border-top: 1px solid var(--hn-line);
  }

  .hn-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      font-size: 15px;
      padding: 8px 19px;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      border: none;
      cursor: pointer;
  }

  .hn-btn-primary {
      background: var(--hn-red);
      color: #fff;
      box-shadow: 0 12px 24px -10px rgba(237, 28, 36, 0.55);
  }

  .hn-btn-primary:hover {
      background: var(--hn-red-dark);
      transform: translateY(-2px);
  }

  .hn-btn-outline {
      background: transparent;
      color: var(--hn-ink);
      border: 1.5px solid var(--hn-line);
  }

  .hn-btn-outline:hover {
      border-color: var(--hn-ink);
      transform: translateY(-2px);
  }

  .hn-btn-sm {
      font-size: 13.5px;
      padding: 8px 16px;
  }

  /* ---------- HERO ---------- */
  .hn-hero {
      position: relative;
      padding: 30px 0 30px;
      background: radial-gradient(560px 320px at 90% -10%, #fdeceb 0%, rgba(253, 236, 235, 0) 70%), var(--hn-white);
  }

  .hn-hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 50px;
      align-items: center;
  }

  .hn-hero h1 {
      font-size: 30px;
      margin: 14px 0 14px;
  }
.hn-hero h1 span{
    color: #ed1c24;
}
  .hn-hero p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--hn-slate);
      /* max-width: 58ch; */
      margin-bottom: 7px;
  }

  .hn-trust-line {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--hn-green-tint);
      border: 1px solid #bfe6cf;
      border-radius: var(--hn-radius-md);
      padding: 16px 18px;
      margin-bottom: 15px;
      font-size: 14px;
      color: var(--hn-green-dark);
  }

  .hn-trust-line i {
      margin-top: 3px;
  }

  .hn-hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .hn-hero-card {
      border: 1px solid #d4e5db;
      border-radius: var(--hn-radius-lg);
      padding: 28px;
      background: #f7faf9;
      box-shadow: var(--hn-shadow);
  }

  .hn-hero-card h3 {
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 9px;
      margin-top: 9px;
  }

  .hn-hero-card h3 i {
      color: var(--hn-red);
  }

  .hn-mini-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
  }

  .hn-mini-stat {
      background: var(--hn-white);
      border: 1px solid var(--hn-line);
      border-radius: 12px;
      padding: 8px;
      text-align: center;
  }

  .hn-mini-stat strong {
      display: block;

      font-size: 22px;
      color: var(--hn-red);
  }

  .hn-mini-stat span {
      font-size: 12px;
      color: var(--hn-slate);
  }

  /* ---------- WHY CHOOSE ---------- */
  .hn-why {
      background: #faf9f7;
  }

  .hn-section-head {
      margin-bottom: 20px;
      max-width: 70ch;
  }

  .hn-section-head h2 {
      font-size: 30px;
      margin: 13px 0 10px;
  }

  .hn-section-head p {
      color: var(--hn-slate);
      font-size: 14px;
      line-height: 1.7;
      margin: 0;
  }

  .hn-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .hn-why-card {
      background: var(--hn-white);
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-md);
      padding: 17px;
  }

  .hn-why-card .hn-why-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #fff;
      background: var(--hn-red);
      margin-bottom: 16px;
  }

  .hn-why-card:nth-child(even) .hn-why-icon {
      background: var(--hn-green);
  }

  .hn-why-card h3 {
      font-size: 16.5px;
   
      font-weight: 700;
      margin-bottom: 8px;
  }

  .hn-why-card p {
      font-size: 14px;
      color: var(--hn-slate);
      line-height: 1.65;
      margin: 0;
  }

  /* ---------- SERVICES DETAIL ---------- */
  .hn-service-block {
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-lg);
      padding: 19px;
      margin-bottom: 10px;
  }

  .hn-service-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 14px;
  }

  .hn-service-top h3 {
      font-size: 21px;
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .hn-service-top h3 i {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--hn-red-tint);
      color: var(--hn-red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
  }

  .hn-service-block p.hn-desc {
      color: var(--hn-slate);
      font-size: 15px;
      line-height: 1.75;
      margin: 0 0 18px;
  }

  .hn-service-cols {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 26px;
  }

  .hn-includes-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
  }

  .hn-includes-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--hn-ink);
      line-height: 1.5;
  }

  .hn-includes-list li i {
      color: var(--hn-green);
      margin-top: 3px;
      font-size: 12px;
  }

  .hn-bestfor {
      background: #fff4fa;
      border-radius: var(--hn-radius-md);
      padding: 18px 20px;
      align-self: start;
  }

  .hn-bestfor strong {
      display: block;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--hn-red-dark);
      margin-bottom: 8px;
  }

  .hn-bestfor p {
      margin: 0 0 16px;
      font-size: 13.5px;
      color: var(--hn-slate);
      line-height: 1.6;
  }

  /* ---------- WHAT'S INCLUDED ---------- */
  .hn-included-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }

  .hn-included-card {
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-lg);
      padding: 26px;
  }

  .hn-included-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--hn-red-dark);
  }

  .hn-included-card:nth-child(2) h3 {
      color: var(--hn-green-dark);
  }

  .hn-included-card:nth-child(3) h3 {
      color: var(--hn-ink);
  }

  .hn-check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 12px;
  }

  .hn-check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13.8px;
      line-height: 1.55;
      color: var(--hn-ink);
  }

  .hn-check-list li i {
      color: var(--hn-green);
      margin-top: 3px;
      font-size: 12px;
      flex-shrink: 0;
  }

  .hn-check-list li strong {
      font-weight: 700;
  }

  /* ---------- PRICING ---------- */
  .hn-pricing {
      background: var(--hn-paper);
  }

  .hn-price-table-wrap {
      overflow-x: auto;
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-lg);
      background: var(--hn-white);
  }

  table.hn-price-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 640px;
      font-size: 14px;
  }

  table.hn-price-table thead th {
      text-align: left;
      background: #37aa73;
      color: #fff;
      padding: 16px 20px;
      font-weight: 600;
      font-size: 13.5px;
  }

  table.hn-price-table thead th:first-child {
      border-top-left-radius: var(--hn-radius-lg);
  }

  table.hn-price-table thead th:last-child {
      border-top-right-radius: var(--hn-radius-lg);
  }

  table.hn-price-table tbody td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--hn-line);
      color: var(--hn-ink);
  }

  table.hn-price-table tbody tr:last-child td {
      border-bottom: none;
  }

  table.hn-price-table tbody td:first-child {
      font-weight: 700;
  }

  table.hn-price-table tbody tr:nth-child(odd) {
      background: var(--hn-paper);
  }

  .hn-price-note {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-top: 18px;
      font-size: 13.5px;
      color: var(--hn-slate);
  }

  .hn-price-note i {
      color: var(--hn-red);
      margin-top: 2px;
  }

  .hn-affect-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
  }

  .hn-affect-card {
      background: #f0cdce26;
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-md);
      padding: 18px;
      font-size: 13.5px;
  }

  .hn-affect-card strong {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: var(--hn-ink);
  }

  .hn-affect-card span {
      color: var(--hn-slate);
      line-height: 1.55;
      display: block;
  }

  /* ---------- HOW TO BOOK ---------- */
  .hn-steps {
      display: grid;
      gap: 18px;
  }

  .hn-step-row {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 20px;
      align-items: flex-start;
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-md);
      padding: 13px;
  }

  .hn-step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--hn-red);
      color: #fff;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hn-step-row:nth-child(even) .hn-step-num {
      background: var(--hn-green);
  }

  .hn-step-row h3 {
      font-size: 16.5px;
   
      font-weight: 700;
      margin-bottom: 6px;
  }

  .hn-step-row p {
      font-size: 14.5px;
      color: var(--hn-slate);
      line-height: 1.65;
      margin: 0 0 10px;
  }

  .hn-step-row ul {
      margin: 6px 0 0;
      padding-left: 18px;
      font-size: 14px;
      color: var(--hn-ink);
      line-height: 1.8;
  }

  /* ---------- FAQ ---------- */
  .hn-faq-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 48px;
  }

  .hn-faq-intro h2 {
      font-size: 30px;
      margin: 16px 0 14px;
  }

  .hn-faq-intro p {
      color: var(--hn-slate);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 16px;
  }

  .hn-faq-item {
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-md);
      margin-bottom: 7px;
      overflow: hidden;
  }

  .hn-faq-question {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 19px;
      text-align: left;
      cursor: pointer;
  }

  .hn-faq-number {
      font-size: 12px;
      font-weight: 700;
      color: var(--hn-slate);
  }

  .hn-faq-question-text {
      flex: 1;
      font-size: 15px;
      font-weight: 600;
      color: var(--hn-ink);
  }

  .hn-faq-toggle {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--hn-paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--hn-ink);
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  }

  .hn-faq-item.hn-active .hn-faq-toggle {
      background: var(--hn-red);
      color: #fff;
      transform: rotate(45deg);
  }

  .hn-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }

  .hn-faq-item.hn-active .hn-faq-answer {
      max-height: 320px;
  }

  .hn-faq-answer-inner {
      padding: 0 16px 9px 40px;
      font-size: 14.5px;
      color: var(--hn-slate);
      line-height: 1.7;
  }

  /* ---------- RELATED SERVICES ---------- */
  .hn-related-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
  }

  .hn-related-card {
      border: 1px solid var(--hn-line);
      border-radius: var(--hn-radius-md);
      padding: 20px;
      text-decoration: none;
      display: block;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      background: #c4adf617;
  }

  .hn-related-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--hn-shadow);
  }

  .hn-related-card i {
      color: var(--hn-red);
      font-size: 19px;
      margin-bottom: 12px;
      display: inline-block;
  }

  .hn-related-card h4 {
      font-size: 14.5px;
   
      font-weight: 700;
      color: var(--hn-ink);
      margin: 0;
  }

  /* ---------- FINAL CTA / CONTACT FORM ---------- */
  .hn-final {
      background: #0c325c;
      color: #fff;
  }

  .hn-final-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: start;
  }

  .hn-final h2 {
      color: #fff;
      font-size: 30px;
      margin: 12px 0 14px;
  }

  .hn-final p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 15px;
      line-height: 1.7;
      max-width: 56ch;
      margin: 0 0 26px;
  }

  .hn-final-points {
      display: grid;
      gap: 12px;
      margin-bottom: 30px;
  }

  .hn-final-point {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.85);
  }

  .hn-final-point i {
      color: var(--hn-red);
      width: 20px;
      text-align: center;
  }

  .hn-form-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--hn-radius-lg);
      padding: 30px;
  }

  .hn-form-card h3 {
      color: #fff;
      font-size: 17px;
      margin-bottom: 18px;
  }

  .hn-form-grid {
      display: grid;
      gap: 14px;
  }

  .hn-form-grid label {
      display: block;
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 6px;
  }

  .hn-form-grid input,
  .hn-form-grid select {
      width: 100%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 10px;
      padding: 12px 14px;
      color: #fff;
   
      font-size: 14px;
  }

  .hn-form-grid input::placeholder {
      color: rgba(255, 255, 255, 0.4);
  }

  .hn-form-grid select option {
      color: #17202a;
  }

  .hn-form-submit {
      width: 100%;
      margin-top: 4px;
      justify-content: center;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px) {

      .hn-hero-grid,
      .hn-service-cols,
      .hn-faq-layout,
      .hn-final-grid {
          grid-template-columns: 1fr;
      }

      .hn-why-grid,
      .hn-included-grid,
      .hn-related-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .hn-affect-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 620px) {
      .hn-section {
          padding: 20px 0;
      }

      .hn-why-grid,
      .hn-included-grid,
      .hn-related-grid,
      .hn-affect-grid,
      .hn-mini-stat-row {
          grid-template-columns: 1fr;
      }

      .hn-hero-actions {
          flex-direction: column;
          align-items: stretch;
      }

      .hn-hero-actions .hn-btn {
          justify-content: center;
      }

      .hn-service-top h3 {
          font-size: 18px;
      }
  }
   @media (max-width:576px){
.hn-page h1, .hn-page h2 {
    font-weight: 600;
    color: var(--hn-ink);
    line-height: 1.18;
    margin: 10px 0px;
    font-size: 21px !important;
}
  .hn-btn {
 font-size: 12px;
}
.hn-hero-grid {
 
    gap: 20px;
   
}
  }