<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }
  
  .header {
    background-color: #0c2d48;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .header h1 {
    margin: 0;
    font-size: 2.8em;
  }
  
  .header p {
    font-size: 1.2em;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .feature h3 {
    margin-top: 0;
    color: #0c2d48;
  }
  
  .cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #1d3557;
    color: white;
  }
  
  .cta h2 {
    margin-bottom: 20px;
  }
  
  .store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .store-links img {
    height: 50px;
    transition: transform 0.2s ease;
  }
  
  .store-links img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 600px) {
    .header h1 {
      font-size: 2em;
    }
  }
  </pre></body></html>