.about-values {
  padding: 100px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 50px auto 0;
}

.value {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.value__icon {
  margin-bottom: 1rem;
}

.value__icon img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.value:hover .value__icon img {
  transform: scale(1.1);
  filter: brightness(1.2);
  filter: brightness(0) saturate(100%) invert(68%) sepia(54%) saturate(556%)
    hue-rotate(8deg);
}

.value h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark, #222);
}

.value p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
