.faq-accordion {
  width: 100%;
  margin: 20px 0;

  .accordion-header {
    cursor: pointer;
    padding: 24px 30px 24px 6px;
    border-bottom: 1px solid #e5e6ec;
    margin-bottom: 0;
    transition: background-color 0.3s ease;
    background: transparent;
    display: flex;

    &.active {
      margin-bottom: 0;
      border-bottom: 1px solid transparent;

      + .accordion-content {
        display: flex;
      }
    }

    h2, h3 {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.25rem;
      width: 100%;
      font-weight: 500;
    }
  }

  .accordion-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
    margin-left: auto;

    &:before {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid #666;
      border-bottom: 2px solid #666;
      transform: translateY(-50%) rotate(45deg);
    }

    &.rotated {
      &:before {
        transform: translateY(-50%) rotate(-135deg);
      }
    }
  }

  .accordion-content {
    display: none;
    border-bottom: 1px solid #e5e6ec;
    border-top: none;
    margin-bottom: 1rem;
  }

  .accordion-content-inner {
    padding: 20px 30px 34px 6px;
    text-align: left;
  }
}