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

body {
  font-family: "Segoe UI", sans-serif;
  background: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  color: #333;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #eee;
}

.contact p {
  margin-bottom: 15px;
  color: #555;
}

.contact a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact a:hover {
  color: #764ba2;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 30px;
  }

  h1 {
    font-size: 2em;
  }

  .logo {
    width: 120px;
  }
}