body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a2342;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  header {
    padding: 60px 20px 20px;
  }
  h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  .logo {
    max-width: 150px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensures the logo is treated as a block element */
    margin: 0 auto; /* Centers the logo horizontally */
}
  .tagline {
    font-size: 20px;
    color: #f5d547;
  }
  main {
    padding: 40px 20px;
    max-width: 600px;
    margin: auto;
  }
  .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #f5d547;
    color: #0a2342;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
  }
  footer {
    padding: 20px;
    font-size: 14px;
    opacity: 0.7;
  }