/* Body styles */
body {
    font-family: sans-serif;
    background-color:#002244;
    margin: 0;
    padding: 0;
}

hr {
    border-width: 2px;
    color: white;
    padding-left: 40px;
}


/* Contact section */
.contact {
  display: flex; /* Keep side-by-side on larger screens */
  justify-content: space-between;
  padding: 20px;
  background-color: #002244;
  color: white;
}

/* Contact info section */
.contact-info1 {
  width: 45%;
  padding-bottom: 40px;
}

.contact-info1 h2 {
  font-size: 28px;
  padding-left: 20px;
  padding-bottom: 0px;
}

.contact-info1 p {
  font-family: sans-serif;
  font-size: 14px;
  text-align: justify;
  padding-left: 0px;
}

.contact-info1 ul {
  list-style-type: none;
}

.contact-info1 ul li {
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 14px;
}

/* Contact form section */
.contact-form {
  width: 45%;
  background-color: #003366;
  padding: 20px;
  border-radius: 5px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
}

.contact-form textarea {
  height: 100px;
 
}

.contact-form button {
  padding: 10px;
  background-color: #004080;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 3px;
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
  /* Stack contact info and form on top of each other */
  .contact {
    flex-direction: column;
  }

  .contact-info1,
  .contact-form {
    width: 100%; /* Take full width on smaller screens */
  }
  
    .contact-info1 h1 {
        font-size: 20px; /* Adjust the font size as needed */
        text-align: center;
        padding: 0;
    }
    .contact-info1 h2 {
        font-size: 18px; /* Adjust the font size as needed */
        text-align: center;
        padding: 0;
    }
    .contact-info1 p {
        font-family: sans-serif;
        font-size: 14px;
        
    }
    .contact-form {
  width: 100%;
  background-color: #003366;
  padding: 5px;
  margin-left:0;
  padding-top: 25px;
  padding-bottom:25px;
  border-radius: 5px;
}

}