.custom-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

.row {
  display: grid;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.row-1, .row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.row-2 {
  grid-template-columns: 1fr;
}

.element {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.element img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
}

.custom-button {
  background: blue; /* Замени на нужный цвет, например, #007bff */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.custom-button .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url('arrow-icon.png') no-repeat center;
  margin-left: 5px;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
  }
}