.faq-block-custom{
  max-width: 980px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.faq-block-custom h2{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faq-item{
  border-bottom: 1px solid #e5e7eb;
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::before{
  content: "▶";
  color: #4DA6FF;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::before{
  transform: rotate(90deg);
}

.faq-answer{
  padding: 0 0 18px 24px;
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

.faq-answer a{
  color: #0077ff;
  text-decoration: underline;
  font-weight: 600;
}

.faq-answer a:hover{
  color: #00a7ff;
}