.what-section {
  width: 1595px;
  height: 637px;          
  margin: 60px auto 0;   
  background: #ffffff;    
  font-family: 'Nunito', sans-serif;
  padding: 24px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.what-title {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  justify-items: center;
  gap: 0 80px;
  margin-top: 159px;
  flex: 1;
}

.what-item {
  text-align: center;
  color: var(--color-dark);
}

.what-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.what-item p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

/* === ADAPTIVE === */
@media (max-width: 1595px) {
  .what-section { width: 100%; height: auto; }
}

@media (max-width: 1024px) {
  .what-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 40px; margin-top: 80px; }
  .what-title { font-size: 28px; text-align: center; }
  .what-item img { width: 160px; height: 160px; }
  .what-item p { font-size: 18px; }
}

@media (max-width: 770px) {
  .what-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .what-item img { width: 120px; height: 120px; }
  .what-item p { font-size: 16px; }
}
