@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Merriweather;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f9fbff;
  color: #1f2937;
  line-height: 1.6;
}

/* Top Heading */
.header {
  /* max-width: 1920px; */
  margin:  0 auto ;
  background-color: #1e3a8a;
  color: #ffffff;
  text-align: center;
  padding: 3rem 0.5rem;
}

.header h1 {
  font-size:64px;
  font-weight: 500;
   font-family: "Merriweather", serif;
}
.contact-section {
  padding: 50px 20px;
  margin: 0 auto;
  max-width: 1920px;
  background-color: #f9f9f9;
  color: #222;
}

.contact-container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 100px;
  justify-content: space-around;
  gap: 110px;
}

.contact-left,
.contact-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-left h1 {
  font-size: 64px;
   font-family: "Merriweather", serif;
   font-weight: 400;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-left a {
  color: #1c4f85;
  text-decoration: underline;
  font-family: "Montserrat", sans-serif;
}

#contactForm {
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

#contactForm label {
  margin-bottom: 5px;
  font-weight: bold;
}

#contactForm input,
#contactForm textarea {
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 100%;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #D9D9D9;
  color: #1E1E1E;
}

#contactForm input,
#contactForm textarea::placeholder{
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
}

#contactForm textarea {
  resize: vertical;
  height: 210px;
}

#contactForm button {
  margin: 15px auto ;
  background-color: #099db4;
  color: #fff;
  width: 40%;
  border: none;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button:hover,
#contactForm button:focus {
  background-color: #077f91;
  outline: 2px solid #055b6b;
}


@media (max-width:1439px){
  .contact-container{
    padding: 20px 50px;
  }
}
@media (max-width:1240px){
  .contact-container{
    padding: 20px 0px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  
  .contact-left h1{
    font-size: 45px;
    text-align: center;
    font-weight: 700;
  }
  
  .contact-left p{
    font-size: 16px;
    text-align: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }
  #contactForm input,
  #contactForm textarea::placeholder{
  font-size: 26px;
}
}

@media (max-width:440px){
  .header h1{
    font-size: 26px;
  }
.contact-section{
  padding: 50px 0px;
}
#contactForm button{
  padding: 15px 12px;
}
}
