body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.hero {
  background: linear-gradient(90deg, #485268, #6b7b8c);
  color: white;
  padding: 80px 30px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  transition: 0.3s;
}

.section-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

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

