    body {
      margin: 0;
      font-family: Arial, sans-serif;
      /* background: #f4f4f4; */
    }

    .faq-section {
      background: url("./images/Rectangle\ 194.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .faq-section-heading {
      text-align: center;
      /* background-color: aqua; */
      padding: 60px 218px 0px 218px;
    }
    .faq-section-heading h3 {
      font-family: Merriweather;
      font-weight: 700;
      font-style: Bold;
      font-size: 36px;
      color: #1c3f94;

      line-height: 100%;
      letter-spacing: 0%;
      vertical-align: middle;
      margin-bottom: 27px;
    }
    .faq-section-heading p {
      font-family: Poppins;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;

      color: #1c3f94;
      line-height: 100%;
      letter-spacing: 0%;
      text-align: center;
      margin-bottom: 27px;
    }

    .faq-container {
      width: 100%;
      display: flex;
      height: 600px;
      /* background: rgb(227, 6, 6); */
      overflow: hidden;
      padding: 0px 70px 35px 70px;
    }

    .faq-content {
      background: url("../images/Rectangle\ 309.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      flex: 1;
      position: relative;
      /* background: #1c1c1c; */
      padding: 40px;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: end;
    }
    .faq-content button {
      padding: 8px 20px;
      background-color: #1c3f94;
      color: white;
      border-radius: 8px;
      border: none;
    }

    /* SLIDE BOX */
    .slide-box {
      /* position: absolute;
      top: 40px;
      left: 40px;
      right: 40px;
      opacity: 0;
      transform: translateX(-40px); */
      transition: 0.4s ease;
      width: 600px;
      /* background: #1c63b8; */
    }
    .slide-box h2 {
      font-family: Poppins;
      font-weight: 600;
      font-style: SemiBold;
      font-size: 40px;

      line-height: 100%;
      letter-spacing: 0%;
      padding-bottom: 15px;
    }

    .slide-box p {
      font-family: Poppins;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;

      line-height: 26px;
      letter-spacing: 0%;
      width: 500px;
    }

    .slide-box.active {
      opacity: 1;
      transform: translateX(0);
    }

    .faq-vertical-tabs {
      display: flex;
      height: 100%;
      gap: 10px; /* ← GAP BETWEEN VERTICAL BARS */

      background: #f4f4f4;
    }

    .faq-col {
      width: 60px;
      background: #1c3f94;

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: 0.3s;
      /* padding-top: 20px; */
      border-radius: 0px;
      padding: 12px 0px;
    }

    .faq-col.active,
    .faq-col:hover {
      background: #174f94;
    }

    .plus {
      font-size: 28px;
      color: white;
      margin-bottom: 20px;
    }

    .vertical-text {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 18px;
      color: white;
      letter-spacing: 1px;
      text-align: center;
    }

    /* ===========================
   FULL RESPONSIVE FIX
   =========================== */

    /* ===========================
   RESPONSIVE FIX (NO CONTENT CHANGE)
   =========================== */

    /* ---------- Large Tablets (≤1200px) ---------- */
/* ---------- Make mobile layout apply up to 1000px ---------- */
@media (max-width: 1300px) {

  .faq-container {
    flex-direction: column;
    height: auto !important;
    padding: 20px;
  }

  .faq-content {
    width: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* TABS become full-width buttons (like your screenshot) */
  .faq-vertical-tabs {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .faq-col {
    width: 100%;
    height: auto;
    min-width: unset;
    padding: 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;       /* ICON + TEXT SIDE BY SIDE */
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .vertical-text {
    writing-mode: horizontal-tb !important;
    transform: rotate(0deg) !important;
    font-size: 16px;
    text-align: left;
  }

  .plus {
    font-size: 24px;
    margin-bottom: 0;
  }

  .slide-box {
    width: 100% !important;
  }

  .slide-box p {
    font-size: 15px;
    width: 307px;
  }

  .faq-section-heading{
    padding: 10px;

  }
}
