.faq-container {
      /* background: rgb(234, 233, 233); */
      font-family: 'Poppins', sans-serif;
        min-height: 100vh;
}
 
   .faq-section {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .faq-header {
      margin-bottom: 30px;
      font-weight: 700;
      color: #000;
      text-align: center;
      font-size: 2.5em;
    }
    .faq-item {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .faq-question {
      background: #000;
      color: #fff;
      font-weight: 600;
      padding: 20px;
      cursor: pointer;
      border: none;
      width: 100%;
      text-align: left;
      outline: none !important;
      transition: background-color 0.3s, color 0.3s;
      font-size: 1.1em;
      display: flex;
      align-items: center;
    }
    .faq-question:hover {
      background-color: #0000009a;
      color: #ffffff;
      outline: none !important;
    }
    .faq-icon {
      margin-right: 10px;
      transition: transform 0.3s ease;
      font-size: 1.2em;
    }
    .faq-answer {
      padding: 20px;
      display: none;
      background: #f9f9f9;
      color: #333;
      font-size: 1em;
      line-height: 1.6;
    }
    .active + .faq-answer {
      display: block;
    }
    .rotate {
      transform: rotate(90deg);
    }