/* Reset Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Global Styles */
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #f2f2f2;
    background-color: #1c1c1c;
  }
  
  header {
    background-color: #0058db;
    color: #f2f2f2;
    padding: -300px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: 2px solid #f2f2f2;
    color: #f2f2f2;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    background-color: #f2f2f2;
    color: #1c1c1c;
  }
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  section {
    margin-bottom: 4rem;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .box {
    background-color: #1c1c1c;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: calc(25% - 2rem);
  }
  
  .box img {
    max-width: 100px;
    margin-bottom: 1rem;
  }
  
  .box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f2f2f2;
  }
  
  .box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #f2f2f2;
  }
  
  .service-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .service {
    background-color: #1c1c1c;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: calc(50% - 2rem);
  }
  
  .service img {
    max-width: 100px;
    margin-bottom: 1rem;
  }
  
  .service h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f2f2f2;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  ul li {
    margin-bottom:1rem;
    font-size: 1rem;
    color: #ffffff;
    }
    
    .footer a {
    color: #ffffff;
    text-decoration: none;
    }
    
    @media screen and (min-width: 768px) {
    .hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
    
    .hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    }
    
    .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    }
    
    .box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    margin-top: 4rem;
    }
    
    .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }
    
    .box img {
    width: 80px;
    margin-bottom: 1rem;
    }
    
    .box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    }
    
    .box p {
    font-size: 1.1rem;
    line-height: 1.5;
    }
    
    .service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 4rem;
    }
    
    .service {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }
    
    .service img {
    width: 80px;
    margin-bottom: 1rem;
    }
    
    .service h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    }
    
    ul {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    }
    
    ul li {
    margin-right: 2rem;
    margin-bottom: 0;
    font-size: 1rem;
    }
    
    .footer {
    padding: 3rem 0;
    text-align: left;
    }
    
    .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    
    .footer-top .box {
    width: 30%;
    text-align: left;
    margin-bottom: 2rem;
    }
    
    .footer-top h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    }
    
    .footer-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }
    
    .footer-top ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    }
    
    .footer-top p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff;
    padding-top: 2rem;
    }
    
    .footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    text-align: center;
    }
    
    .footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
    }
    }
  