/*Обнуление*/
* {
  padding: 0;
  margin: 0;
}
*{
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
  }
body {
  font-family: "Montserrat", sans-serif;
}

/*  */
.container {
 /* max-width: 1024px; */
  margin: 0 auto;
  width: 100%;
}

.faq {
  background-image: var(--wpr-bg-d1cd51d1-a7c5-4352-be27-04a049842f39);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  padding: 70px 0 70px;
}
.faq-wrap{
    padding-right: 32px;
    padding-left: 32px;
}
.accordion {
    max-width: 727px;
    margin: 0 auto;
  }
  
  .accordion h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #111111;
    margin-bottom: 24px;
  }
  
  .accordion-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 8px;
    overflow: hidden; 
  }
  
  .accordion-header {
    gap: 5px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    opacity: 0.88;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, padding-bottom 0.2s ease;
    padding: 24px; 
  }
  
  .accordion-header.active {
    padding-bottom: 16px;
  }
  
  
  .accordion-header .icon {
    width: 24px;
    height: 24px;
    background-image: var(--wpr-bg-aaeea60f-8140-4958-a803-84f636159c0b); 
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .accordion-header.active .icon {
    transform: rotate(90deg);
    background-image: var(--wpr-bg-65bf53c3-3eff-458a-b2c6-1d1ddb86af1c);
  }
 
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.3s ease;
    padding: 0 24px;
  }
  
  .accordion-content p {
    margin: 0 0 24px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #292929;
    opacity: 0.7;
    padding-right: 0;
  }
  
  @media (max-width: 767px) {
    .faq{
     
    }
}
  @media (max-width: 500px) {
    .accordion-content p {
        font-size: 14px;
        line-height: 20px;
      }
      .accordion-header {
        padding: 16px 32px; 
        line-height: 20px;
      }
      .accordion-header .icon {
        width: 20px;
        height: 20px;
      }
      .accordion-item {
        margin-bottom: 18px;
      }
      .accordion h2 {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 16px;
    }
    }