
  .faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
  }

  .faq-title {
    font-size: 20px;
    font-weight: 600; /* SemiBold */
    text-align: center;
    margin-bottom: 20px;
    color: #222;
  }

  .faq-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
  }

  .faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 400; /* Regular */
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }

  .faq-question:hover {
    color: #ff69b4;
  }

  .faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    font-size: 18px;
    font-weight: 400; /* Regular */
    color: #555;
    line-height: 1.6;
    display: none;
    padding: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff69b4;
  }
