body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafe;
  margin: 0;
  padding: 0;
  color: #1e1e1e;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

h1, h2 {
  text-align: center;
  color: #111827;
}

.description {
  text-align: center;
  max-width: 800px;
  margin: 10px auto 40px;
  color: #4b5563;
}

.info-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.box {
  flex: 1;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
}

.box img {
  height: 40px;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  text-align: center;
  font-weight: 500;
}
h1, h2, h3 {
  font-weight: 600;
}

.card a {
  display: block;
  margin-top: 10px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.card a:hover {
  text-decoration: underline;
}
.card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  text-align: center;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
