/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    background-color: #f0f8ff;
    color: #333;
  }
  
  header {
    background: #007acc;
    color: white;
    padding: 20px 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    background: linear-gradient(to right, #e0f7ff, #cceeff);
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #007acc;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #007acc;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: #ffffff;
    flex-wrap: wrap;
  }
  
  .feature {
    max-width: 300px;
    margin: 20px;
    text-align: center;
  }
  
  .feature h3 {
    color: #007acc;
    margin-bottom: 10px;
  }
  
  footer {
    background: #005f99;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  