#faq main .main_visual {
  background-image: url("../../img/who_we_are.jpg");
}

#faq main p {
  line-height: 32px;
}

/* FAQ Section */
#faq main .faq-section {
  margin-top: 2rem;
}

#faq main .faq-category {
  margin-bottom: 3rem;
}

#faq main .faq-category h3 {
  margin-bottom: 1.5rem;
}

/* FAQ Items */
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background-color 0.2s;
}

.faq-item summary:hover {
  background-color: #fafafa;
}

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

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #DF0012;
  border-bottom: 2px solid #DF0012;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.faq-answer p {
  line-height: 1.8 !important;
  margin-bottom: 0.5rem;
}

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

.faq-answer ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.faq-answer ul li {
  margin-bottom: 0.3rem;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.faq-answer a {
  color: #DF0012;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item summary {
    padding: 14px 18px;
    font-size: 14px;
  }
  .faq-answer {
    padding: 14px 18px;
    font-size: 14px;
  }
  .faq-answer ul li {
    font-size: 14px;
  }
}
