.faq-section {
  border-radius: 12px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  margin-top: 30px;
}

.faq-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item h3:hover {
  color: #0073e6;
}

.faq-item p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 480px) {
  .faq-section {
    padding: 16px;
    margin-top: 20px;
  }

  .faq-section h2 {
    font-size: 1.4rem;
  }

  .faq-item h3 {
    font-size: 1.05rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
}