.faq-list {
    max-width: 730px;
    margin-bottom: 80px;
  }
  
  .faq-item {
    border-bottom: 1px solid #e5eaf5;
    padding: 15px 0;
  }
  
  .faq-question {
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question:hover {
    color: var(--bs-red);
  }
  
  .faq-answer {
    margin: 20px 0;
    font-size: 0.95em;
    line-height: 1.5;
    color: #666;
  }

  .faq-answer p{
    margin-bottom: 10px;
  }
  
  .faq-item summary {
    list-style: none;
  }
  
  .icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    margin-left: 10px;
  }
    
  .icon::before {
    content: "+";
  }
  
  details[open] .icon::before {
    content: "-";
    color: var(--bs-red);
  }

  details[open] {
    color: var(--bs-red);
  }

  details[open] .faq-item__line {
    border-bottom: 2px solid var(--bs-red);
    margin-top: 15px;
  }

  