

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px;
  max-width: 1200px;
  margin: auto;
}

.faq-left h2 {
  font-size: 48px;
  margin-bottom: 16px;
  text-align: center;
}

.subtitle {
  font-size: 16px;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.faq-left img {
  max-width: 420px;
}

.faq-item {
  border-bottom: 1px solid #0f3d3e;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #0f3d3e;
}

.faq-question span {
  font-size: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0 0 24px 0;
  color: #244f50;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
