/* features.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    min-height: 100vh;
  }
  
  header {
    background-color: #222;
    padding: 20px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
  }
  
  .nav-links li {
    display: inline-block;
    margin-left: 20px;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #ff6f00;
  }
  
  main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .features {
    padding: 80px 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .features h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .features p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bbb;
  }
  
  .feature {
    background-color: #222;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
  }
  
  .feature:hover {
    transform: translateY(-10px);
  }
  
  .feature img {
    width: 105px;
    height: 100px;
    border-radius: 100%;
    margin-right: 20px;
  }
  
  .feature-info {
    flex: 1;
  }
  
  .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  footer {
    background-color: #222;
    padding: 30px;
  }
  