/* Cards MexLife Values — golf-influence styles */
.golf-influence {
  width: 100%;
  padding: 150px 0; /* vertical whitespace via padding */
  background: #fff;
  text-align: center;
}

.golf-influence-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 0; /* subtle buffer to breathe */
}

.golf-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-card {
  flex: 1 1 220px;
  border: 1px solid #5DB873;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  height: 222px;
  text-align: start;
  background: linear-gradient(to top, #46AD6712 7%, #46AD6712 7%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.stat-card img {
  width: 60px;
  height: 60px;
  display: block;
}

.stat-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #46AD67;
  margin: 10px 0 8px;
}

.stat-card p {
  font-size: 16px;
  font-weight: 400;
  color: #575757;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .golf-stats {
    justify-content: center;
  }
  .stat-card {
    flex: 0 0 45%;
    width: auto;
  }
}

@media (max-width: 600px) {
  .stat-card {
    flex: 0 0 100%;
    height: auto;
  }
}
