.faq-section {
  padding: 50px 20px;
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  color: var(--secondary-darker);
  margin-bottom: 20px;
}

.faq-item {
  background-color: var(--primary-color);
  border-bottom: 1px solid #d0d5dd;
  padding: 15px 0;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: var(--secondary-light);
}

.faq-question {
  font-size: 1.2rem;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: var(--secondary-light);
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.faq-answer.open {
  max-height: 200px;
  padding: 15px;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-arrow.rotate {
  transform: rotate(180deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    width: 100%;
    margin: 0;
  }

  .faq-title {
    font-size: 2rem;
  }

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