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

.container {
  background-color: #ffffff;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 90%;
  box-sizing: border-box;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  max-width: 250px;
  height: auto;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #1b244c;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
  color: #7f8187;
}

h3 {
  margin-top: 2em;
  font-size: 1.5em;
  color: #1b244c;
}

p {
  font-size: 1.2em;
  color: #333;
}

p:last-child {
  color: #7f8187;
}

.buttons {
  margin-top: 30px;
}

.button {
  display: inline-block;
  margin: 15px;
  padding: 15px 30px;
  font-size: 1.2em;
  color: #ffffff;
  background-color: #1b244c;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: point
