/* Reset styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Global styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
  }
  
  .container {
    max-width: 1200px;
  }
  
  /* Header */
  .header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar ul {
    list-style-type: none;
  }
  
  .navbar li {
    display: inline-block;
    margin-left: 20px;
  }
  
  .navbar li a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Hero Section */
  .hero {
    background-color: #f2f2f2;
    padding: 100px 0;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
  }
  
  .cta-button:hover {
    background-color: #555;
  }
  
  /* Sections */
  .section {
    padding: 80px ;
    text-align: center;
  }
  
  .section h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .section p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .section ul {
    list-style-type: disc;
    text-align: left;
    margin-left: 40px;
  }
  
  .section ul li {
    margin-bottom: 10px;
  }
  
  /* Contact Form */
  section#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  section#contact form input,
  section#contact form textarea {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  section#contact form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  section#contact form button:hover {
    background-color: #555;
  }
  
  /* Footer */
  .footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
 .a {
    color: #fff;
 } 
 .feature-list{
    display: flex;
    justify-content: center;
    justify-items: center;
    width: 100%;

    }
 .feature-list-items{
    display: flex;
    font-size: 25px;
    font-weight: bold;
    display: flexbox;
    margin: 0 20px 0 20px ;
    }

