#faq-container-root h2 {
    text-align: center;
    color: var(--primary-color);
  }

  #faq-container-root {
    direction: rtl;
    margin-top: 80px;
  }
  #faq-container-root p {
    text-align: center;
    margin-bottom: 30px;
    color: #5a5a5a;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1300px;
    margin: 30px auto;
  }


  .faq-container {
    max-width: 1300px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0.4px 2px rgba(0,0,0,0.1);
    overflow: hidden;
  }


  .faq-item {
    border-bottom: 1px solid #d9d9d9;
  }


  .faq-question {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    user-select: none;
    transition: background-color 0.3s ease;
  }

  .faq-question:hover {
    background-color: #d6d6d6;
  }
  .faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
  }
  .faq-icon.open {
    transform: rotate(180deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    background-color: #fafafa;
    transition: max-height 0.4s linear, padding 0.4s linear;
  }
  .faq-answer.open {
    padding: 20px;
  }

  @media (max-width: 1300px){
      .faq-container{
        margin-left: 20px;
        margin-right: 20px;
    }
}