/* IMAGE + TEXT BLOCKS (NEW) */
.what-ecotrack {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.what-ecotrack .text {
  flex: 1;
}

.what-ecotrack .image {
  flex: 1;
  text-align: center;
}

.what-ecotrack img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid #c8e6c9;
}

.vision-image-block {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.vision-image-block .vision-text {
  flex: 1;
}

.vision-image-block .vision-image {
  flex: 1;
  text-align: center;
}

.vision-image-block img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid #c8e6c9;
}

/* RESPONSIVE IMAGE/TEXT STACK */
@media (max-width: 768px) {
  .what-ecotrack,
  .vision-image-block {
    flex-direction: column;
    text-align: center;
  }
}
