{% require_css %}
<style>
  /* Import Figtree Font */
  @import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');

  .faq-section {
    padding: 100px 20px;
    background-color: #F8FDFF; /* Light background */
    font-family: 'Figtree', sans-serif;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  /* --- Section Header --- */
  .faq-header-section {
    text-align: center;
    margin-bottom: 60px;
  }

  .faq-header-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .faq-intro {
    font-size: 16px;
    color: #111;
  }

  /* --- FAQ Card Styling --- */
  .faq-card {
    background-color: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }

  /* Hover State (Subtle) */
  .faq-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  /* --- Header / Trigger --- */
  .faq-trigger {
    width: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
  }
  
  .faq-trigger:hover .faq-question{
    color:#fff;
  }

  .faq-trigger:hover .faq-icon{
    color:#fff;
  }

  .faq-trigger:focus .faq-question{
    color:#fff;
  }

  .faq-trigger:focus .faq-icon{
    color:#fff;
  }

  .faq-question {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }

  /* Icon Styling */
  .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  /* --- Active State (Matches Image 9) --- */
  .faq-card.active {
    border-color: #152C42; /* Matches header color */
  }

  .faq-card.active .faq-trigger {
    background-color: #152C42; /* Dark Blue Header */
  }

  .faq-card.active .faq-question {
    color: #ffffff; /* White Text */
  }

  .faq-card.active .faq-icon {
    color: #ffffff; /* White Icon */
    transform: rotate(45deg); /* Turns Plus to X */
  }

  /* --- Content / Answer --- */
  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
  }

  .faq-content-inner {
    padding: 24px 32px 32px 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
  }
  
  .faq-content-inner p {
    margin: 0;
  }

  /* --- Mobile Responsive --- */
  @media (max-width: 768px) {
    .faq-header-section h2 {
      font-size: 32px;
    }
    
    .faq-trigger {
      padding: 20px;
    }
    
    .faq-content-inner {
      padding: 20px;
    }
    
    .faq-question {
      font-size: 16px;
      padding-right: 15px;
    }
  }
</style>
{% end_require_css %}