.b-faq {
  padding-bottom: 24px;
}

.b-faq__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.b-faq__item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.b-faq__item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.b-faq__question {
  padding: 16px 20px;
  background: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  user-select: none;
}

.b-faq__question:hover {
  background: #f8f9fa;
}

.b-faq__question:focus {
  outline-offset: -2px;
}

.b-faq__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.b-faq__item--active .b-faq__icon {
  transform: rotate(180deg);
}

.b-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.b-faq__answer-content {
  padding: 0 20px 20px 20px;
  color: #666;
  line-height: 1.6;
  background: #fff;
}

.b-faq__item--active .b-faq__answer {
  max-height: 200px;
}

.b-faq__price {
  font-weight: 600;
  color: #2c5aa0;
}

.b-faq__link {
  color: #007bff;
  text-decoration: none;
}

.b-faq__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .b-faq {
    margin: 0 16px;
  }
  .b-faq__question {
    padding: 14px 16px;
    font-size: 15px;
  }
  .b-faq__answer-content {
    padding: 0 16px 16px 16px;
  }
}
.b-btn {
  height: 40px;
  background: #55BC74;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
  max-width: 230px;
  outline: none;
  border: none;
}

.b-btn:hover {
  color: white;
  text-decoration: none;
}

.b-btn:focus {
  color: white;
  text-decoration: none;
  outline: none;
}

/*# sourceMappingURL=iex_styles.css.map */
