* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
body { 
  overflow-x: hidden; 
}
.header{
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extrabold);
  font-family: var(--font-display);
  color: #FFFFFF;
  text-align: center;
  margin-top: 0px;
  padding: 100px 16px 20px 16px;
}
.headercolor{
  background-color: #27548A;
  background: linear-gradient(135deg, #27548A 10%, #4A7BA7 100%);
}
.mainbody{
  display: flex;
  align-items: stretch;        
  justify-content: center;
}
.information,
.requestform{
  flex: 1 1 50%;
  min-width: 0;             
}
.information{
  background-color: #578FCA;
  padding: 40px 24px;           
  display: flex;
  align-items: center;
  justify-content: center;
}

.bvucontact{
  background: #FFFFFF;
  border-radius: 50px;
  padding: 35px 40px;
  line-height: 2;
  width: min(520px, 100%);     
  text-align: center;
}

.bvuinfo{ 
  color: #EFBF04;  
  padding-bottom: 20px; 
}
.bvuinfo2{ 
  color: #27548A; 
}
.bvucontact2{ 
  font-size: 22px; 
}
.requestform{ 
  background: #f8f9fa !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.body{
  text-align: center;
  max-width: 700px; 
  margin: 0 auto;
  padding: 30px 0 20px; 
  font-size: 22px; 
  line-height: 1.5;
}
.note{ 
  text-align: center; 
  font-weight: bold; 
  padding-bottom: 10px; 
  font-size: 20px; 
}
.important{ 
  text-align: center;
   font-style: italic; 
   color: #FF0000; 
   font-size: 18px;
  }
.mainform{ 
  max-width: 800px; 
  margin: 0 auto; 
  padding: 20px 12px;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
form{ 
  display: flex; 
  flex-direction: column; 
  gap: 50px; 
  width: 100%;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.row{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0 !important;
}
.formsection{
  flex: 1 1 300px;             
  display: flex; 
  flex-direction: column;
  background: none;
  border: none;
  box-shadow: none;
}
label{ 
  margin-bottom: 4px; 
  font-weight: bold; 
}
input, textarea{
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: rgba(0,0,0,0.05);
}
input:focus, textarea:focus {
  outline: none !important;
  border-color: #999 !important;
  box-shadow: none !important;
}
textarea{
  min-height: 200px;
  resize: vertical;
}
.mainmessage{ 
  display: flex; 
  flex-direction: column; 
  width: 100%; 
}
.submitbutton{ 
  display: flex; 
  justify-content: center; 
}
.submit-btn{
  background-color: #FADA7A; 
  color: #000;
  border: none; 
  padding: 12px 24px; 
  font-size: 16px; 
  font-weight: bold;
  border-radius: 25px; 
  transition: background-color .3s;
}
.submit-btn:hover{ 
  background-color: #EFBF04; 
}
@media (max-width: 960px){
  .header{
    font-size: 2.5rem !important;
  }
  .mainbody{ 
    flex-direction: column; 
  }
  .information, .requestform{ 
    flex: 1 1 100%; 
  }
  .information{ 
    padding: 28px 16px; 
  }
  .bvucontact{ 
    border-radius: 28px; 
    padding: 28px 24px; 
  }
  .row{ 
    flex-direction: column; 
    gap: 12px; 
  }
  .formsection{
    flex: 1 1 auto;
  }
  form{ 
    gap: 12px; 
  }
  label{ 
    margin-bottom: 3px; 
  }
}