/* Блок з перевагами */ .advantages { display: flex; justify-content: space-around; flex-wrap: wrap; margin: 50px 0; } .advantage { text-align: center; width: 200px; margin-bottom: 20px; } .advantage img { width: 100px; height: 100px; }

.faq { width: 100%; max-width: 800px; margin: 0 auto; } .question { border-bottom: 1px solid #ccc; padding: 10px; background-color: #f7f7f7; } .question.open { background-color: #cce5ff; } .question-title { display: flex; justify-content: space-between; align-items: center; cursor: pointer; margin: 0; } .answer { display: none; margin: 10px 0; } .toggle { font-weight: bold; color: #333; transition: transform 0.3s ease; } .question.open .toggle { transform: rotate(-180deg); }

    .advantages {
      display: flex;
      justify-content: space-around;
      margin: 50px 0;
    }

    .advantage {
      text-align: center;
      width: 200px;
    }

    .advantage img {
      width: 100px;
      height: 100px;
    }