* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 500px;
}

.content {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo {
  margin-bottom: 2rem;
}

.logo img {
  max-width: 120px;
  height: auto;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #0a2463;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.icon {
  font-size: 3rem;
  color: #00b4d8;
  margin: 2rem 0;
}

.contact {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f1f5f9;
  border-radius: 8px;
}

.contact p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact p.divider {
  margin: 0.5rem 0;
  font-size: 0.8rem;
}

.contact a {
  display: inline-block;
  color: #0a2463;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem 0;
  transition: color 0.3s;
}

.contact a:hover {
  color: #00b4d8;
}

@media (max-width: 480px) {
  .content {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .logo img {
    max-width: 100px;
  }

  .icon {
    font-size: 2.5rem;
  }
}
