body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
  margin: 0;
  min-height: 100vh;
  color: #1e3a8a;
}

header {
  background: #1e3a8a;
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2.2em;
}

header p {
  margin: 5px 0 0 0;
  font-size: 1.1em;
  opacity: 0.9;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.card h2 {
  margin: 0 0 10px 0;
  font-size: 1.4em;
  color: #1f2937;
}

.card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95em;
  line-height: 1.4;
}