/* styles.css */

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Header Styles */
  header {
    background-color: #292929;
    padding: 20px;
    color: #fff;
  }
  
  .logo img {
    height: 40px;
    width: auto;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  nav ul li {
    margin-right: 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Hero Section Styles */
  .hero {
    background-color: #f2f2f2;
    padding: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 36px;
    color: #333;
  }
  
  .hero p {
    color: #777;
    margin-bottom: 20px;
  }
  
  .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
  }
  
  /* Features Section Styles */
  .features {
    padding: 40px;
  }
  
  .features h2 {
    text-align: center;
  }
  
  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }
  
  .feature h3 {
    font-size: 24px;
    color: #333;
  }
  
  .feature p {
    color: #777;
  }
  
  .feature-icon {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .feature-icon img {
    height: 120px; /* Update the height to your desired value */
    width: auto;
  }
  