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

  .refuge-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .refuge-guide-card {
    background: #2E313E;
    border-radius: 12px;
    overflow: hidden;
  }

  .refuge-guide-card__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .refuge-guide-card__title {
    background: #363A48;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #f5f5f0;
  }

  .refuge-guide-card__items {
    padding: 15px;
  }

  .refuge-guide-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    color: #f5f5f0 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #363A48;
    transition: color 0.2s ease;
  }

  .refuge-guide-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .refuge-guide-item:first-child {
    padding-top: 0;
  }

  .refuge-guide-item:hover {
    color: #8a9eb3 !important;
  }

  .refuge-guide-item__title {
    flex: 1;
    font-size: 15px;
  }

  .refuge-guide-type-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .refuge-guide-type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  </style>
  <?php
  return ob_get_clean();
}

// Shortcode for FAQs
add_shortcode('refuge_faqs', 'refuge_faqs_shortcode');

function refuge_faqs_shortcode() {
  $faqs = get_option('refuge_faqs', []);

  if (empty($faqs)) {
    return '';
  }

  ob_start();
  ?>
  <div class="refuge-faqs">
    <h3>Frequently Asked Questions</h3>
    <div class="refuge-faq-accordion">
      <?php foreach ($faqs as $index => $faq): ?>
        <div class="refuge-faq-item">
          <button class="refuge-faq-question" data-faq="<?php echo $index; ?>">
            <span><?php echo esc_html($faq['question']); ?></span>
            <svg class="refuge-faq-icon" width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
              <path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/>
            </svg>
          </button>
          <div class="refuge-faq-answer" id="faq-<?php echo $index; ?>">
            <div class="refuge-faq-answer-content">
              <?php echo wp_kses_post($faq['answer']); ?>
            </div>
          </div>
