:root {
  --dark-blue: #18283a;
  --teal: #2c928b;
  --background: #f4f7f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  background: var(--background);
  color: var(--dark-blue);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  padding: 20px;
  width: 100%;
}

.card {
  background: #ffffff;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 42px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(24, 40, 58, 0.15);
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 32px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.contact {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.contact strong {
  font-weight: 600;
  color: var(--dark-blue);
}
