/* FAQ - Ideal Air */
.fia-section {
  padding: 48px 0 56px;
  width: 100%;
  background: #fff;
}

.fia-inner.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.fia-heading {
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 32px;
  font-family: "Open Sans", Arial, sans-serif;
}

.fia-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
}

.fia-item {
  background: #f5f5f5;
}

.fia-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  box-sizing: border-box;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #1a1a1a;
}

.fia-item__trigger:hover,
.fia-item__trigger:focus {
  color: #0a45bb;
  outline: none;
}

.fia-item__question {
  flex: 1;
  min-width: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.fia-item__icons {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fia-item__icon--plus {
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: #1a1a1a;
  display: block;
}

.fia-item__icon--chev {
  display: none;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 14l6-6 6 6' stroke='%23EE304E' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.fia-item__trigger[aria-expanded="true"] .fia-item__icon--plus {
  display: none;
}

.fia-item__trigger[aria-expanded="true"] .fia-item__icon--chev {
  display: block;
}

.fia-item__panel {
  padding: 0 20px 20px;
  box-sizing: border-box;
  background: #f5f5f5;
}

.fia-item__panel[hidden] {
  display: none;
}

.fia-answer-html {
  font-size: 15px;
  line-height: 24px;
  color: #333333;
  font-family: "Open Sans", Arial, sans-serif;
}

.fia-answer-html p {
  font-size: 15px;
  line-height: 24px;
  color: #333333;
  margin: 0 0 12px;
}

.fia-answer-html p:last-child {
  margin-bottom: 0;
}

.fia-answer-html ul,
.fia-answer-html ol {
  margin: 0 0 12px;
  padding-left: 1.25em;
}

.fia-answer-html h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  font-family: "Open Sans", Arial, sans-serif;
}

@media (max-width: 768px) {
  .fia-section {
    padding: 32px 0 40px;
  }

  .fia-heading {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .fia-item__trigger {
    padding: 16px 14px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
  }

  .fia-item__question {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
  }

  .fia-item__panel {
    padding: 0 14px 16px;
  }

  .fia-answer-html h3 {
    line-height: 1.4;
  }
}
