/* ================================
   FAQ ONE – MATCH ORIGINAL STYLE
   No plus / minus icons
   ================================ */

   /* .faq-one {
    padding: 100px 0;
    background-color: #ffffff;
  } */
  
  /* Section tagline */
  .sec-title__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .sec-title__tagline .line {
    width: 30px;
    height: 2px;
    background-color: #0b1c2d;
  }
  
  .sec-title__tagline h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    color: #0b1c2d;
  }
  
  /* Main heading */
  .sec-title__title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0b1c2d; /* SAME AS FIRST FAQ */
  }
  
  .sec-title__title span {
    color: var(--logistiq-base);
  }
  
  /* Accordion */
  .faq-one-accrodion {
    text-align: left;
  }
  
  .faq-one-accrodion .accrodion {
    background: #f8f9fb;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid #e6eaf0;
    transition: all 0.3s ease;
  }
  
  .faq-one-accrodion .accrodion-title {
    padding: 22px 26px;
    cursor: pointer;
  }
  
  .faq-one-accrodion .accrodion-title h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.4;
  }
  
  /* REMOVE PLUS ICON */
  .faq-one-accrodion .accrodion-title::after {
    display: none;
  }
  
  /* Answer */
  .faq-one-accrodion .accrodion-content {
    display: none;
    padding: 0 26px 22px;
  }
  
  .faq-one-accrodion .accrodion.active .accrodion-content {
    display: block;
  }
  
  .faq-one-accrodion .inner p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 0;
  }
  
  /* Hover */
  .faq-one-accrodion .accrodion:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .sec-title__title {
      font-size: 30px;
    }
  }
  
  @media (max-width: 575px) {
    .sec-title__title {
      font-size: 26px;
    }
  
    .faq-one-accrodion .accrodion-title h4 {
      font-size: 16.5px;
    }
  }
  