/* FAQ SECTION */
.faq {
  padding: 100px 0;
  background: linear-gradient(90deg, #f5f7ff 50%, #ffffff 50%);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.faq-left h2 {
  font-size: 34px;
  color: #0c2d57;
}

.faq-left h2 span {
  color: #2563eb;
  font-weight: 600;
}

.faq-sub {
  margin: 10px 0 40px;
  color: #6b7280;
}

/* FAQ ITEMS */
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-question h3 {
  flex: 1;
  margin: 0 15px;
  font-size: 16px;
  color: #0c2d57;
}

.icon {
  width: 28px;
  height: 28px;
  background: #fee2e2;
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #4b5563;
  font-size: 14px;
  transition: 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

/* RIGHT IMAGE */
.faq-right img {
  width: 100%;
  border-radius: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq {
    background: #f5f7ff;
  }
}
