
  .faq-section {
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
  }

  .faq-item {
    border-bottom: 1px solid #eee;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: #ff69b4;
  }

  .faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff69b4;
  }
