:root {
  --navy: #0f1e33;
  --beige: #d8c3a5;
  --gray: #f5f6f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gray);
  color: var(--navy);
  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 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 30, 51, 0.12);
  text-align: center;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--beige);
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}

h1 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 32px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--beige);
  margin: 0 auto 28px;
}

.contact {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.contact strong {
  font-weight: 500;
  color: var(--navy);
}
