/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f111a;
    color: #ffffff;
    line-height: 1.6;
  }
  
  /* Top Navigation Bar */
  .topbar {
    background-color: #1a1d2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  }
  
  .logo {
    font-size: 20px;
    font-weight: bold;
    color: #f5e13a;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
  }
  
  .nav-links a:hover {
    color: #f5e13a;
  }
  
  /* Hero Section */
  .hero {
    background-color: #10131f;
    padding: 60px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
    color: white;
  }
  
  .hero p {
    margin: 15px 0;
    font-size: 18px;
    color: #f5e13a;
  }
  
  .btn-primary {
    background-color: #00c853;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
    display: inline-block;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }
  
  .section h2 {
    color: #f5e13a;
    margin-bottom: 20px;
  }
  
  .alt {
    background-color: #1c1f2e;
  }
  
  /* Cards */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    background-color: #2a2e42;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .card.small {
    font-weight: normal;
    font-size: 14px;
  }
  
  .green {
    background-color: #00c853;
  }
  
  .orange {
    background-color: #ff9800;
  }
  
  /* List Section */
  ol {
    text-align: left;
    max-width: 600px;
    margin: auto;
  }
  
  ol li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  /* Contact */
  .btn-secondary {
    background-color: #2a2e42;
    padding: 10px 20px;
    color: white;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
  }
  
  /* Bottom Footer Bar */
  .bottombar {
    background-color: #1a1d2e;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: white;
    margin-top: 40px;
  }
  