body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.6;
}

.hero {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.button {
  background-color: #cbd5e1;
  color: #0f172a;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
}

.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.light {
  background-color: #f8fafc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #0f172a;
  color: white;
}
