* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f0f4f8;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 48px;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

h1 {
  font-size: 2rem;
  color: #232f3e;
  margin-bottom: 16px;
}

.description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
}

.info-box {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 16px;
  font-size: 0.9rem;
  color: #495057;
}