
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: linear-gradient(135deg,#eef2f7,#dfe6ee);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  padding: 20px;
}

.card {
  background: white;
  padding: 45px 55px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 460px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 6px;
  color: #1f2933;
}

.tagline {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.services {
  list-style: none;
  margin-bottom: 28px;
}

.services li {
  padding: 10px 0;
  border-top: 1px solid #edf2f7;
  color: #2d3748;
  font-size: 1rem;
}

.services li:first-child {
  border-top: none;
}

.contact a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact a:hover {
  text-decoration: underline;
}
