@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(to right, #fff1e6, #f0e4ff);
  padding: 2rem;
  color: #2e2e2e;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

.heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2e2e2e;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2e2e2e;
}

.card ul {
  list-style: disc;
  text-align: left;
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #e63946;
}
