* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #222;
}

.container {
  background: #ffffff;
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 180px;
  margin-bottom: 25px;
}

h1 {
  font-size: 26px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.contact p {
  font-size: 16px;
  margin: 8px 0;
}

.contact a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.contact a i {
  font-size: 18px;
  margin: 0 10px;
  color: #000;
}

.contact a i:hover {
  color: #0077ff; /* optional hover color */
}
