body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0b0c10;
    color: #c5c6c7;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1f2833;
    position: sticky;
    top: 0;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #66fcf1;
  }
  
  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #66fcf1;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  nav a:hover {
    background-color: #45a29e;
    color: #0b0c10;
  }
  
  .hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #0b0c10;
  }
 
  .highlight-link {
    color: #66fcf1; /* Bright teal color */
    text-decoration: none;
    font-weight: bold;
  }
  
  .highlight-link:hover {
    color: #45a29e;
    text-decoration: underline;
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .tagline {
    font-size: 1.2em;
    color: #66fcf1;
  }
  
  section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  section h2 {
    color: #45a29e;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #1f2833;
    color: #c5c6c7;
    font-size: 0.9em;
  }
  