body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px;
}

.banner {
  position: relative;
  text-align: center;
  color: white;
}

.bannermobile {
      display: none;
}

.bannerdesktop {
  display: block;
}

.banner img {
  width: 100%;
  height: auto;
}

.banner .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  font-size: 3.8rem;
  font-weight: bold;
  color: #ffdd00;
}

.content {
  padding: 10px;
  text-align: center;
}

.contact-button {
  background-color: limegreen;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 20px 0;
  text-decoration: none;
}

.contact-button:hover {
  background-color: #0034a6;
}

h1 {
  color: #333;
}

.problem {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.solution {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 30px;
}

.usp {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  margin-top: 30px;
}

.usp ul {
  list-style-type: disc;
  margin: 0;
  padding: 0;
  text-align: left;
}

.usp ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-form {
  background-color: #001d6d;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  color: white;
}

.contact-form input, 
.contact-form textarea {
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 10px 20px;
  background-color: limegreen;
  width: -webkit-fill-available;
  font-size: 1.1em;
  font-weight: 900;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}

.testimonials {
  margin-top: 40px;
}

.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 1rem;
  color: #333;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
}

.footer-logo {
  position: relative;
  text-align: center;
  color: white;
  padding: 0px 0px 50px 0px;
  background-color: #fff;
}

.footer-logo img {
  width: 15%;
  height: auto;
}


.contact-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #001d6d;
  color: white;
  padding: 10px;
  text-align: center;
  z-index: 999;
}

.contact-bar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1rem;
}

.contact-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
      font-size: 1.5rem;
  }

  .bannermobile {
      display: block;
  }

  .bannerdesktop {
      display: none;
  }

  .banner .overlay-text {
      font-size: 1.5rem;
  }

  .problem {
      font-size: 1rem;
  }

  .solution {
      font-size: 0.9rem;
  }

  .solution span.solutionhighlight {
      font-size: 1.1rem;
      font-weight: bolder;
  }

  .contact-bar a {
      font-size: 0.9rem;
  }

  .footer-logo img {
  width: 100%;
  height: auto;
}

  
}
