/* Media Queries */
@media screen and (max-width: 1024px) {
    /* Adjust styles for screens smaller than 1024px */
    
    .container {
      margin: 10px;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 16px;
    }
  }
  
  @media screen and (max-width: 600px) {
    /* Adjust styles for screens smaller than 600px */
    
    .logo-section {
      text-align: center;
    }
  
    .logo {
      width: 30px;
      height: 30px;
      margin-right: 5px;
    }
  
    .logo-section h1 {
      font-size: 20px;
    }
  
    .calculator {
      margin: 0 20px;
    }
  
    .features {
      flex-wrap: wrap;
    }
  
    .feature {
      width: 100%;
      margin-bottom: 30px;
    }
  }
  
  @media screen and (max-width: 320px) {
    /* Adjust styles for screens smaller than 320px */
    
    .container {
      margin: 5px;
    }
  
    .calculator {
      padding: 30px 0;
    }
  
    .calculator h2 {
      font-size: 20px;
    }
  
    .input-container label,
    .output-container label {
      font-size: 14px;
    }
  
    .input-container input {
      padding: 8px;
      font-size: 14px;
    }
  }
  /* Media Queries */
  @media screen and (max-width: 768px) {
    /* Adjust styles for screens smaller than 768px */
    
    .features {
      justify-content: center;
    }
  
    .feature {
      width: 100%;
      margin-right: 0;
    }
  
    .how-it-works {
      margin-left: 0;
    }
  }
  
  @media screen and (max-width: 480px) {
    /* Adjust styles for screens smaller than 480px */
    
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .quick-links {
      flex-basis: 100%;
      margin-bottom: 20px;
      text-align: center;
    }
  }
  /* Media query for screens with a maximum width of 768px (mobile devices) */
  @media (max-width: 768px) {
    .logo-section {
      flex-direction: column;
      align-items: center;
    }
  
    .logo {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    nav {
      margin-top: 20px;
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    nav ul li {
      display: block;
      margin: 10px 0;
    }
  }
  @media (max-width: 767px) {
    /* Hide the <h1> element */
    h1.gradient-heading {
      display: none;
    }
  
    /* Hide the navigation links */
    .menu nav ul li {
      display: none;
    }
  
    /* Show the menu.png image */
    .menu {
      background-image: url("menu.png");
      background-repeat: no-repeat;
      background-position: right center;
      background-size: 30px 30px;
      cursor: pointer; /* Add this to change the cursor to a pointer */
      
    }

  }
  @media (min-width: 768px) {
    .menu-drop {
      display: none;
    }
  }
/* Media query for mobile phones */
@media screen and (max-width: 600px) {
  .contact-form-section {
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .testimonial {
    margin-left: 0px;
  }
  .how-it-works .step {
    align-items: center;
  }

}