  .faq-container {
    /* background-color: #f5f7fa; */
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
  }

  .faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600; /* Bolder text */
    font-size: 1.05rem;
    color: #1a1a1a;
    background-color: #fff;
    transition: background-color 0.3s ease;
  }

  .faq-question:hover {
    background-color: #f1f1f1;
  }

  .faq-question .icon {
    font-size: 1.3rem;
    color: red;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .faq-question.active .icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    line-height: 1.6;
    color: #444;
    background-color: #fafafa;
  }

  .faq-answer.active {
    max-height: 300px;
    padding: 10px 20px 20px;
  }

  @media (max-width: 600px) {
    .header h1 {
      font-size: 2rem;
    }

    .faq-question {
      padding: 15px;
      font-size: 1rem;
    }

    .faq-answer.active {
      padding: 10px 15px 15px;
    }
  }