.goals-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background: #ffffff; /* White background behind the cards */
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.goal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 300px;
  flex: 1 1 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.goal-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.goal-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.goal-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .goals-section {
    flex-direction: column;
    align-items: center;
  }
}
