
      h2 {
        text-align: center;
        /*color: #1bbd36;*/
      }

      .faq-item {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 10px 0;
        padding: 30px;
        transition: all 0.3s ease-in-out;
      }

      .faq-item:hover {
        transform: scale(1.02);
      }

      .faq-question {
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        /*color: #1bbd36;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-answer {
        display: none;
        padding-top: 10px;
        font-size: 16px;
        color: #555;
      }

      .faq-question::after {
        content: '\25BC';
        font-size: 14px;
        transition: transform 0.3s;
      }

      .faq-item.active .faq-question::after {
        transform: rotate(180deg);
      }
