/* ========================================
   FAQ
======================================== */
.faq-section {
  max-width: 820px;
  margin: 40px auto 0;
}

.faq-section__title {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 800;
}

.faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(120, 170, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(44, 63, 175, 0.9) 0%,
    rgba(31, 47, 146, 0.95) 100%
  );
}

.faq-item summary {
  position: relative;
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #7fc2ff;
  font-size: 28px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}


.faq-item__content {
  padding: 0 22px 18px;
  color: #dce6ff;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}
