.benefits-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  margin: 40px 0;
}

/* Každý benefit */
.benefit {
  flex: 1;
  padding: 20px;
  border-left: 1px solid #ddd;
}

.benefit:first-child {
  border-left: none; /* Odstranění čáry u prvního boxu */
}

/* Ikony */
.icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* Nadpis */
h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

/* Text */
.benefits-section .benefit p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responzivní stylování */
@media (max-width: 768px) {
  .benefits-section {
    flex-direction: column; /* Každý box pod sebou */
    text-align: center; /* Zarovnání na střed */
  }

  .benefit {
    border-left: none;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
  }

  .benefit:last-child {
    border-bottom: none;
  }

  /* Zarovnání textu a ikon na střed */
  .benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}