body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

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

.header-text h1 {
  margin: 0;
  font-size: 28px;
}

.header-text h2 {
  margin: 5px 0 15px 0;
  font-size: 18px;
  font-weight: normal;
}

.header-text p {
  margin: 2px 0;
  font-size: 14px;
}

a {
  color: black;
  text-decoration: none;
}

/* 🌐 Responsive Design */
@media (max-width: 600px) {
  .logo {
    max-width: 100px;
    margin-bottom: 15px;
  }

  .header-text h1 {
    font-size: 22px;
  }

  .header-text h2 {
    font-size: 16px;
  }

  .header-text p {
    font-size: 13px;
  }
}
