.custom-accordion-group {
  max-width: 800px;
  margin: 0 auto;
}

.custom-accordion-item {
  margin-bottom: 15px;
  border-radius: 25px;
  overflow: hidden;
}

.custom-accordion-toggle {
  width: 100%;
  background: #eee;
  border: none;
  padding: 18px 20px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 9999 !important;
  position: relative;
}

.custom-accordion-toggle:hover {
  background: #e0e0e0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  fill: #333;
  transition: transform 0.3s ease;
}

.faq-icon .line-vertical {
  transform-origin: center;
  transition: transform 0.3s ease;
}

.custom-accordion-toggle[aria-expanded="true"] .line-vertical {
  transform: rotate(90deg);
}

.custom-accordion-content {
  padding-top: 20px;
  margin-top: -20px;
  max-height: 0;
  overflow: hidden;
  background: #f7f7f7;
  border-radius: 0 0 25px 25px;
  transition: max-height 0.4s ease;
}

.custom-accordion-content p {
  padding: 15px 20px;
  margin: 0;
}

@media (max-width: 576px) {
  .custom-accordion-toggle {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
  }
}

.bg-dark-blue {
  background-color: #222d59;
  margin-top: 50px;
}

.faq-cta h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

.faq-cta .btn-warning {
  background-color: #fcea10;
  border: none;
  color: #000;
  font-weight: bold;
}

.faq-cta .btn-warning:hover {
  background-color: #e5d700;
  color: #000;
}