.faq-section {
    width: 100vw;
    background: #962E51; /* Back to Black for contrast with Attire's Cream intro */
    padding: 150px 5vw;
    color: var(--color-white);
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .faq-header span.accent-text {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    font-size: 3.5rem;
  }
  
  .faq-header .text-dark { color: #fff !important; }
  
  /* --- THE ACCORDION LIST --- */
  .faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .faq-question {
    width: 100%;
    padding: 35px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: padding-left 0.4s ease;
  }
  
  .faq-question span {
    font-family: var(--secondary-font);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
  }
  
  /* Custom Icon (+) */
  .faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  /* Horizontal bar */
  .faq-icon::before {
    top: 50%; left: 0;
    width: 100%; height: 2px;
    transform: translateY(-50%);
  }
  
  /* Vertical bar */
  .faq-icon::after {
    top: 0; left: 50%;
    width: 2px; height: 100%;
    transform: translateX(-50%);
  }
  
  /* Hover Effect */
  .faq-item:hover .faq-question {
    padding-left: 20px;
  }
  
  /* Active State Icon (Turns into a ×) */
  .faq-item.active .faq-icon::before { transform: translateY(-50%) rotate(45deg); }
  .faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(45deg); }
  
  /* --- THE ANSWER (Hidden) --- */
  .faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  
  .faq-answer p {
    font-family: var(--secondary-font);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.6;
    padding-bottom: 40px;
    max-width: 850px;
  }
  
  /* --- MOBILE --- */
  @media (max-width: 768px) {
    .faq-question span { font-size: 1.4rem; }
    .faq-item:hover .faq-question { padding-left: 0; }
  }