  .refuge-faqs h3 {
    margin-bottom: 20px;
  }

  .refuge-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .refuge-faq-item {
    background: #2E313E;
    border-radius: 8px;
    overflow: hidden;
  }

  .refuge-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #363A48;
    border: none;
    color: #f5f5f0 !important;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .refuge-faq-question:hover {
    background: #3d4250;
  }

  .refuge-faq-question span {
    flex: 1;
  }

  .refuge-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .refuge-faq-item.active .refuge-faq-icon {
    transform: rotate(180deg);
  }

  .refuge-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .refuge-faq-answer-content {
    padding: 20px;
    color: #f5f5f0;
    line-height: 1.6;
  }

