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

/* Page */
body {
  height: 100vh;
  background: #EAE9E9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
}

/* Main container */
.container {
  text-align: center;
  max-width: 720px;
  padding: 40px 24px;
}

/* Logo */
.logo {
  max-width: 360px;
  width: 100%;
  margin-bottom: 32px;
}

/* Text */
.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #333;
}

/* Contacts */
.contacts {
  font-size: 0.95rem;
  color: #555;
}

.contacts p {
  margin-bottom: 8px;
}

.contacts a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.contacts a:hover {
  border-bottom-color: rgba(0,0,0,0.6);
}
