.ft-faq-section {
  background: #f6f8fb;
  padding: 50px 16px;
  font-family: system-ui, Arial;
  border-radius: 5px;
}

.ft-container {
  max-width: 1050px;
  margin: 0 auto;
}

.ft-faq-intro {
  text-align: center;
  margin-bottom: 30px;
}

.ft-faq-intro h2 {
  color: #0b66d5;
  margin-bottom: 6px;
  font-size: 30px;
}

/* GRID: 2 Columns Desktop, 1 Column Mobile */
.ft-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

/* FAQ BOX */
.ft-faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e1e5ee;
  box-shadow: 0 4px 14px rgba(15,23,42,0.06);
  overflow: hidden;
  padding: 0;
}

/* Hide checkbox */
.ft-faq-item input {
  display: none;
}

/* Question Row */
.ft-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.ft-question:hover {
  background: rgba(11,102,213,0.06);
}

/* Dropdown arrow */
.ft-icon {
  fill: #0b66d5;
  transition: transform 0.3s ease;
}
img.ft-icon{
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: none !important;
    box-shadow: none !important;
}

/* Answer (hidden) */
.ft-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.ft-answer p {
  margin: 14px 0 18px;
  line-height: 1.45;
  color: #445;
  font-size: 14px;
}

/* OPEN: Expand Answer */
.ft-faq-item input:checked ~ .ft-answer {
  max-height: 200px;
  padding: 0 20px 16px 20px;
}

/* Rotate arrow when open */
.ft-faq-item input:checked + label .ft-icon {
  transform: rotate(180deg);
}
