.values-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    margin-bottom: 100px;
}

.values-section-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.values-list {
    font-size: 18px;
    margin-bottom: 10px;
}

.values-list p {
  transition: filter 0.25s ease, opacity 0.25s ease;
}

/* When the container is being hovered anywhere... */
.values-list:hover p {
  filter: blur(3px);
  opacity: 0.6;
}

/* ...except the specific line being hovered */
.values-list p:hover {
  filter: blur(0);
  opacity: 1;
}