/* --------------------------------------------------------------
  FAQ STYLES
--------------------------------------------------------------- */

.faq-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
  }
  
  .faq-title {
    font-size: 2.5rem;
    color: #136171;  /* Primary title color */
    text-align: center;
  }
  
  .faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555; /* Subtitle text color */
    margin-bottom: 2rem;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;

    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #136171;          /* Question text color */
    background-color: #feb7d8; /* Question background */
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
  }
  
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #136171;   /* +/– icon color */
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .faq-item.open .faq-question::after {
    content: "–";
  }
  
  .faq-item {
    background: #a8dbcfb9;   /* Answer background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);  /* Item elevation */
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: max-height 0.4s ease;
  }

  .policy-title {
    font-weight: bold;
    margin-top: 1rem;
  }

  .policy-text {
    margin-bottom: 1rem;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: #555; /* Policy text color */
  }

  .faq-item.open .faq-answer {
    max-height: 500px; /* fallback in case JS fails */
  }

  /* ------------------------------------------------------------------
   RESPONSIVE (max‑768px and 600px)
------------------------------------------------------------------ */

  @media (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
    }
  
    .faq-subtitle {
      font-size: 1rem;
    }
  
    .faq-question {
      font-size: 1rem;
    }
  
    .faq-answer {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .faq-title {
      font-size: 1.8rem;
    }
  
    .faq-subtitle {
      font-size: 0.9rem;
    }
  
    .faq-question {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      word-break: break-word;
      padding-right: 3rem;
      position: relative;
    }

    .faq-question::after {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
    }
  
    .faq-answer {
      font-size: 0.8rem;
    }
  }
