/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Body and Global Styles */
  body {
    background-color: #f4f4f9;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  /* Header Styles */
  header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #1e1e1e;
    color: white;
  }
  
  header .logo h1 {
    font-size: 1.8em;
    letter-spacing: 2px;
  }
  
  header nav ul {
    display: flex;
    list-style: none;
  }
  
  header nav ul li {
    margin: 0 15px;
  }
  
  header nav ul li a {
    font-weight: 600;
    color: white;
    transition: color 0.3s;
  }
  
  header nav ul li a:hover {
    color: #f7a600;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #00b4d8, #f7a600);
    color: white;
    padding: 80px 40px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    padding: 15px 30px;
    background-color: #f7a600;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    margin-right: 20px;
  }
  
  .learn-more {
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #f7a600;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
  }
  
  .cta-btn:hover, .learn-more:hover {
    background-color: white;
    color: #f7a600;
  }
  
  /* Features Section */
  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 40px;
    text-align: center;
  }
  
  .feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .feature-item h3 {
    margin-bottom: 10px;
    color: #1e1e1e;
  }
  
  .feature-item p {
    color: #666;
  }
  
  /* How It Works Section */
  .how-it-works {
    background-color: #f9f9f9;
    padding: 60px 40px;
    text-align: center;
  }
  
  .steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .step {
    width: 30%;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .step h3 {
    margin-bottom: 10px;
    color: #1e1e1e;
  }
  
  /* Footer Styles */
  footer {
    background-color: #1e1e1e;
    color: white;
    padding: 40px;
    text-align: center;
  }
  
  footer p {
    margin-bottom: 20px;
  }
  
  footer .social-icons a {
    color: white;
    margin: 0 15px;
    font-weight: 600;
  }
  
  footer .newsletter {
    margin-top: 20px;
  }
  
  footer .newsletter input {
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
  }
  
  footer .newsletter button {
    padding: 10px 20px;
    background-color: #f7a600;
    color: white;
    border-radius: 5px;
    border: none;
  }
  