.section-title-card {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-top: 2rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 1.5rem auto;
}

.card-link {
  text-decoration: none;
}

.card {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card img {
  width: 96px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.card-content {
  margin-left: 1rem;
}

.card-content h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin: 0 0 0.3rem 0;
  text-align: left;
}

.card-content p {
  color: #545151;
  font-size: 0.9rem;
  margin: 0;
}

/* Gradient color classes */
.yellow { background: linear-gradient(to bottom right, #fff9c4, #ffe082); }
.green { background: linear-gradient(to bottom right, #c8e6c9, #a5d6a7); }
.blue { background: linear-gradient(to bottom right, #bbdefb, #90caf9); }
.purple { background: linear-gradient(to bottom right, #e1bee7, #ce93d8); }
.pink { background: linear-gradient(to bottom right, #f8bbd0, #f48fb1); }
.orange { background: linear-gradient(to bottom right, #ffe0b2, #ffcc80); }
.teal { background: linear-gradient(to bottom right, #b2dfdb, #80cbc4); }
.red { background: linear-gradient(to bottom right, #ffcdd2, #ef9a9a); }
.violet { background: linear-gradient(to bottom right, #d1c4e9, #b39ddb); }
.indigo { background: linear-gradient(to bottom right, #c5cae9, #9fa8da); }
.cyan { background: linear-gradient(to bottom right, #b2ebf2, #80deea); }

.mb-14 {
  margin-bottom: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-content h3 {
  font-size: 1rem;
  text-align: left;
}
  .card-content p {
  font-size: 0.8rem;
}
}