body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #1f2937;
  background: linear-gradient(to bottom right, #fff, #f8fafc, #eff6ff);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
}

.header h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #1e3a8a;
}

.header nav a {
  margin-left: 1rem;
  color: #374151;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h2 {
  font-size: 3rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.hero button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #1e3a8a;
  color: white;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}

.services {
  display: grid;
  gap: 2rem;
  padding: 4rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.about,
.contact {
  background: #eff6ff;
  padding: 4rem 1rem;
  text-align: center;
}

.contact form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #cbd5e0;
  border-radius: 0.75rem;
}

.contact button {
  padding: 0.75rem 2rem;
  background: #1e3a8a;
  color: white;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  cursor: pointer;
}

footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 2rem 1rem;
}

/* Simple fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}
