<style>
  /* Import a modern, readable font */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

  /* Base styles */
  body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    line-height: 1.7; /* better readability */
    background: #f9f9f9;
  }

  h1, h2 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  h2 {
    font-size: 2rem;
    color: #0D1B2A;
  }

  p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
  }

  header {
    background: #1B2A42; /* lighter than #0D1B2A */
    color: #F5F5F5;       /* light text for contrast */
    padding: 60px 20px;
    text-align: center;
}

  header p {
    font-size: 1.25rem;
    margin-top: 10px;
    opacity: 0.8;
    color: white;
  }

  footer {
    background: #1B2A42; /* lighter than #0D1B2A */
    color: #F5F5F5;          /* softer text color */
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    font-size: 0.9rem;
  }
  
  footer p {
    font-size: 1.25rem;
    margin-top: 10px;
    opacity: 0.8;
    color: white;
  }


  section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
  }

  section img {
    width: 100%;
    max-width: 880px;
    display: block;
    margin: 30px auto;
    border-radius: 20px;
    object-fit: cover;
  }

  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature {
    flex: 1 1 260px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  /* Responsive tweaks */
  @media (max-width: 600px) {
    h1 {
      font-size: 2.2rem;
    }

    h2 {
      font-size: 1.5rem;
    }

    section {
      padding: 40px 15px;
    }
  }
</style>
