body {
  background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%);
  color: #333;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Cards Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.card a {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 15px;
      background: white;
      color: #ec678f;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.1);
  font-size: 0.9rem;
  margin-top: 2rem;
}