/* Contact Us section styles */
.banner.contact-us {
  background-image: url(../img/contactus/banner.jpg);
}

#contact-us {
  display: flex;
  flex-direction: column;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
}

#contact-us h1 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

#contact-us p {
  line-height: 1.5;
  margin-bottom: 20px;
}

#contact-us ul {
  margin-bottom: 40px;
}

#contact-us li {
  line-height: 1.5;
  margin-bottom: 10px;
}

#contact-us li:before {
  content: "\2022";
  color: #4caf50;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#contact-us label {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

#contact-us input[type="text"],
#contact-us input[type="email"],
#contact-us input[type="tel"],
#contact-us textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

#contact-us textarea {
  resize: vertical;
}

#contact-us input[type="submit"] {
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
}

#contact-us input[type="submit"]:hover {
  background-color: #3e8e41;
}

#contact-us .success {
  background-color: #4caf50;
  color: #ddd;
}
#contact-us .error {
  color: #fff;

  background-color: #a10000;
}

#contact-us .error,
#contact-us .success {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 30px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


#contact-us .contact-list span {
  display: grid;
  grid-template-columns: 30px 160px auto;
  border-bottom: 1px solid #ddd;
  padding : 15px;
  
}

