body {
  background-color: #ffffff;
  color: #000000;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  display: block;
  max-width: 326px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.nav-buttons a {
  background-color: #0d6efd;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.nav-buttons a:hover {
  background-color: #0b5ed7;
}

.content {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 16px;
}

.content h1 {
  text-align: center;
}

.contact {
  text-align: center;
  font-size: 20px;
  margin-top: 30px;
  font-weight: bold;
}

.platform-image {
  display: block;
  max-width: 675px;
  width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
}

/* Responsive tweaks for tablets and phones */
@media (max-width: 768px) {
  .nav-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-buttons a {
    width: 80%;
    text-align: center;
  }

  .content {
    text-align: center;
  }
}
