/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: #161B6D;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
  }
  
  header img {
    max-width: 200px;
  }
  
  .header-content {
    flex-grow: 1;
    text-align: right;
  }
  
  nav ul {
    list-style-type: none;
  }
  
  nav ul li {
    display: inline;
    margin-right: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .main-content {
    padding: 50px;
    text-align: center;
  }
  
  .main-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .main-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .download-buttons {
    margin-top: 20px;
  }
  
  .download-button {
    display: inline-block;
    background-color: #161B6D;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-right: 10px;
  }
  
  .download-button:last-child {
    margin-right: 0;
  }
  
  .download-button:hover {
    background-color: #004175;
  }
  
  footer {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
  }
  