body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e3e8ee 100%);
  color: #2d3748;
  min-height: 100vh;
}

.container {
  max-width: 420px;
  margin: 48px auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(44, 62, 80, 0.09);
  text-align: center;
}

h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a2540;
}

.subtitle {
  font-size: 1.12rem;
  margin-bottom: 28px;
  color: #61738b;
}

.progress-bar {
  width: 100%;
  height: 16px;
  background: #e3e8ee;
  border-radius: 8px;
  margin: 28px 0 32px 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(44, 62, 80, 0.07);
}

.progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #6dd5ed 0%, #2193b0 100%);
  transition: width 2s ease;
  border-radius: 8px;
}

.contact-box {
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.03);
  padding: 18px 12px;
  margin-bottom: 20px;
}

.contact-box h2 {
  margin-top: 0;
  font-size: 1.14rem;
  color: #2193b0;
}

.contact-box a {
  color: #2193b0;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

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

.footer {
  font-size: 0.92rem;
  color: #61738b;
  margin-top: 20px;
}