
  .imf-faq {
    width: 100%;
    margin: 2.5rem 0;
    font-family: 'Inter', -apple-system, sans-serif;
  }
  .imf-faq__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F2B42;
    margin-bottom: 1.25rem;
  }
  .imf-faq__item {
    border: 1px solid #E2DDD6;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: #fff;
    overflow: hidden;
  }
  .imf-faq__question {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0F2B42;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .imf-faq__question:hover {
    background: #FAF9F7;
  }
  .imf-faq__icon {
    font-size: 1rem;
    color: #B0ADA6;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .imf-faq__item--open .imf-faq__icon {
    transform: rotate(135deg);
  }
  .imf-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s;
    padding: 0 1.1rem;
    color: #6B6B6B;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .imf-faq__item--open .imf-faq__answer {
    max-height: 200px;
    padding: 0 1.1rem 1rem;
  }
