@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
      font-family: "Segoe UI", sans-serif;
      margin: 15px;
      background: #f8f9fa;
      color: #212529;
}

h2 {
      margin-top: 30px;
      font-size: 16px;
      /* color: #2980b9; */
}



.accordion-header {
      padding: 10px 10px;
      cursor: pointer;
      font-weight: 600;
      position: relative;
      font-size: 14px;
}


.accordion-header::after {
      content: '';
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 6px;
      height: 6px;
      border-right: 2px solid #333;
      border-bottom: 2px solid #333;
      transition: transform 0.3s;
}

.accordion-header.active::after {
      transform: translateY(-50%) rotate(-135deg);
}

.accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 20px;

}

.faq-ans {
      font-size: 13px !important;
}


.accordion-content.open {
      padding: 0px 20px;
      max-height: 500px;
}

.accordion-content.open p {
      margin: 5px 0px;
}

.faq-divider {
      border: none;
      border-top: 1px solid #dcdcdc;
      margin: 15px 0 0 0;
}

.faq-links {
      color: #1e4e7e;
      font-weight: 600;
}