.faq {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;      
    flex-wrap: wrap;
    gap: 90px;
  }

 
  .faq__intro {
    flex: 1 1 300px;       
    max-width: 400px;
  }

  .faq__label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
  }

  .faq__title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
  }


  .faq__questions {
    flex: 1 1 500px;  
  }


  .faq__list {
    list-style: none;
    border-top: 1px solid #000;
  }

  .faq__item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .faq__question {
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    flex: 1 1 auto;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .faq__answer {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    display: none;  
    line-height: 1.4;
  }


  .faq__toggle-btn {
    background-color: #0D2239;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;  
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq__toggle-btn:hover {
    background-color: #102b4e;
  }


  .faq__toggle-icon {
    pointer-events: none; 
  }

  .faq__item.opened .faq__toggle-icon {
    content: '-';
  }
  .faq__item.opened .faq__answer {
    display: block;
  }

  @media (max-width: 768px) {
    .faq {
      flex-direction: column;
    }
    .faq__intro, .faq__questions {
      flex: 1 1 100%;
    }
    .faq__title {
      font-size: 2rem;
    }
  }