/* FAQ wrapper */
.expofy-faq {
    max-width: 900px;
    margin: 30px 0;
    font-family: inherit;
  }
  
  /* FAQ title */
  .expofy-faq__title {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
  }
  
  /* FAQ item */
  .expofy-faq__item {
    border: 1px solid #f5e5ee;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #ffffff;
    overflow: hidden;
  }
  
  /* FAQ question button */
  .expofy-faq__question {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: #64254B;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left !important;
  }

   /* FAQ question text */
    .expofy-faq__question-text {
        flex: 1 1 auto;
        display: block;
        text-align: left !important;
    }
  
  /* FAQ question hover state */
  .expofy-faq__question:hover {
    background: #d63494;
  }
  
  /* FAQ question focus state */
  .expofy-faq__question:focus {
    outline: 2px solid #d63494;
    outline-offset: 2px;
  }
  
  /* FAQ plus icon */
  .expofy-faq__icon {
    flex: 0 0 auto;
    font-size: 40px;
    line-height: 1;
    transition: transform 0.2s ease;
    margin-left: auto !important;
  }
  
  /* FAQ answer hidden by default */
  .expofy-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  
  /* FAQ answer paragraph */
  .expofy-faq__answer p {
    margin: 0;
    padding: 20px;
    color: #111827;
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Active FAQ item icon */
  .expofy-faq__item.is-active .expofy-faq__icon {
    transform: rotate(45deg);
  }
  
  /* Mobile styling */
  @media (max-width: 600px) {
    .expofy-faq__title {
      font-size: 22px;
    }
  
    .expofy-faq__question {
      padding: 16px;
      font-size: 16px;
    }
  
    .expofy-faq__answer p {
      padding: 16px;
      font-size: 15px;
    }
  }