/* Theme styles for the Features Page */
body {
    background-color: #101010;
    color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
  }
  
  header {
    background-color: #181818;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.6rem;
    color: #f5f5f5;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #f5f5f5;
    margin: 4px 0;
  }
  
  .features-section {
    padding: 60px 40px;
    background-color: #181818;
  }
  
  .features-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #00cc99;
  }
  
  .features-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #cccccc;
  }
  
  .feature {
    margin-bottom: 40px;
  }
  
  .feature h2 {
    font-size: 2rem;
    color: #00cc99;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 1.2rem;
    color: #cccccc;
  }
  
  footer {
    background-color: #181818;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #181818;
      position: absolute;
      top: 70px;
      right: 40px;
      width: 200px;
      padding: 20px;
      border-radius: 5px;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  