* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1000px;
  text-align: center;
}

h1 {
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.icon-box {
  font-size: 60px;
  margin-bottom: 20px;
  color: #007bff;
  transition: 0.3s ease;
}

.card:hover .icon-box {
  color: #0056b3;
  transform: scale(1.1);
}

.card h3 {
  color: #444;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
