/* =========================
   Data-to-Revenue Flow
   ========================= */
.dataflow {
  padding: 2rem 0;
  background: #ffffff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #555555;
  text-align: center;
}

.dataflow-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dataflow-card {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #e3e3e3 100%);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.dataflow-card:hover {
  transform: translateY(-4px);
}

.dataflow-card img {
  height: 80px;
  width: auto;
  margin-right: 1.5rem;
}

.dataflow-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #555555;
  margin-bottom: 0.25rem;
}

.dataflow-link {
  font-size: 0.95rem;
  color: grey;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight:lighter;
}

.dataflow-link:hover {
  color: #0bb6c4;
}

/* =========================
   Mobile Responsive (Dataflow)
   ========================= */
@media (max-width: 768px) {
  .dataflow {
    padding: 5rem 1rem;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  /* Always 2 per row for mobile */
  .dataflow-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dataflow-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .dataflow-card img {
    height: 60px;
    margin: 0 0 1rem 0;
  }

  .dataflow-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }

  .dataflow-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Small phones still keep 2 per row, but bump text up */
  .dataflow-card {
    padding: 1.25rem;
  }

  .dataflow-card img {
    height: 55px;
  }

  .dataflow-content h4 {
    font-size: 1.2rem;
  }

  .dataflow-link {
    font-size: 1rem;
  }
}
