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

body {
  font-family: Arial, sans-serif;
  height: 100vh;
  background: #ffffff;
}

.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Center Section */
.center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  max-height: 80px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 30px;
  font-weight: 100;
  color: #222;
}

/* Bottom Contact Links */
.footer {
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .logo {
    max-height: 65px;
    margin-bottom: 40px;
  }

  h1 {
    font-size: 24px;
  }
}
