body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
}

.faq-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 1rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tag {
  display: inline-block;
  background: #ffedb8;
  color: #ae850a;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.faq-header h1 {
  font-size: 2.2rem;
  margin: 0.5rem 0;
}

.faq-header .highlight {
  color: #fdcc39;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background-color: #fff;
  color: #222;
  font-size: 1rem;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 1.2rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(-180deg);
}

.faq-answer {
  background-color: #fafafa;
  padding: 0 1rem 1rem;
  display: none;
  font-size: 0.95rem;
  border-top: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h1 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}