body{
    background-color: #F4F4F4;
    color:#333333;
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main{
    padding: 40px;
    line-height: 2;
}

h2 {
  margin: 0;
  font-size: 40px; 
  color: #0077FF;
}

h3{
    font-size: 25px;
    color: #003366;
}

header {
    width: 100%;
    height: 100px;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
#logo {
    width: max(10rem, 18vw);
    aspect-ratio: 16/9;
    margin:0;
    padding:0;
    box-sizing:border-box;
  }

.heading {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    aspect-ratio: 16/9;
  }
  
.heading img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

nav {
    overflow: hidden;
    width: 100%;
  }
  
 nav a {
    float: right;
    font-size: 25px;
    color: #333333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .subnav {
    float: right;
    overflow: hidden;
  }
  
  .subnav .subnavbtn {
    font-size: 25px;
    border: none;
    color: #333333;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  nav a:hover {
    border-bottom: 1px solid #003366;
  }
  
  .subnav-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #003366;
    z-index: 1;
    width: 100%;
    padding: 10px 0;
  }
  
  .subnav-content a {
    float: right;
    color: white;
    text-decoration: none;
  }
  
  .subnav-content a:hover {
    border-bottom: 1px solid #C0C0C0;
  }
  
  .subnav:hover .subnav-content {
    display: block;
  }

footer{
    background-color: #003366;
    color: #C0C0C0;
    font-size: 15px;
    padding:10px;
    margin-top:auto;
    display: flex;
    justify-content: space-between;
}

footer p, footer a{	
    color: #C0C0C0;
    font-size: 15px;
}
footer nav{
    width: 35%;
}
footer>nav>a{
    color: #C0C0C0;
    font-size: 15px;
    float: left;
    text-decoration: underline;
}

section:not(.heading):not(:last-of-type){
  border-bottom:2px solid #C0C0C0;
  padding: 30px 0 30px 0;
}

section ul li{
  margin: 15px;
}

.row{
    display: flex;
    align-items: center;
    margin: 0;
}

.col{
    display: block;
    width: 50%;
    align-content: center;
    height: fit-content;
}
#serviceContent{
    max-width: 80%;
    padding-bottom: 50px;
}

.col img{
    width: 60%;
    aspect-ratio: 1/1;
    display: block;
    margin: 0 auto;
}

button{
  background-color: #0077FF;
  color: white;
  padding: 15px 20px;
  border-radius: 12px; 
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.contactButton{
    background-color: #0077FF;
    color: white;
    padding: 15px 10px;
    border-radius: 12px; 
    border: none;
    cursor: pointer;
    width: 25%;
    font-size: 25px;
    display: block;
    margin: 10px auto;
    box-sizing:border-box;
}

.caption{
    font-style: italic;
    text-align: center;
}

.box {
    position: absolute;
    bottom: 30px;
    left: 0;
    background-color: rgba(51, 51, 51);
    color: #ffffff;
    margin: 0;
    padding:0 40px;
    box-sizing:border-box;
  }
  
  .box .subhead {
    font-size: 20px;
    margin-top: 8px;
    color: #F4F4F4;
    font-style: italic;
  }

  form {
    width: 50vw;
    margin: 0 auto;
    padding-bottom: 2em;
  }
  label {
    display: block;
    margin: 0.5rem 0;
  }
  
  input,
  textarea,
  select {
    margin: 10px 0 0 0;
    width: 100%;
    min-height: 2em;
    font-size:large;
  }

  textarea{
    height: 8rem;
    font-family:sans-serif;
  }
.submit{
  background-color: #0077FF;
    color: white;
    border-radius: 12px; 
    border: none;
    cursor: pointer;
    box-sizing:border-box;
    width: 20%;
    font-size: 20px;
}

.options{
  width: 100%;
  padding: 20px;
  box-sizing:border-box;
}

.dropdown{
  background-color: #f2f4f7;
  border-radius: 10px;
  width: 100%;
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; 
  background-color: #f2f4f7;
  border: none;
  border-radius: 10px;
  padding: 30px 28px;
  margin: 30px auto;
  font-size: 20px; 
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing:border-box;
}

.service:hover {
  background-color: #e6e8eb;
}

.service::after {
  content: '▼';
  font-size: 22px;
  color: #555;
  margin-left: 20px;
}

.services{
  background-color: #003366;
  margin: 0;
  padding: 0;
}

.dropdownContent {
  display: none; 
  background-color: #f2f4f7;
  border: none;
  border-radius: 0 10px;
  padding: 30px 28px;
  margin: 0;
  font-size: 20px; 
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 4px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.dropdownContent a {
  color: #003366;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdownContent a:hover {
  background-color: #f1f1f1;
}

.show{
  display: block;
}

.container {
    margin: 10px auto;
    padding:0;
    position: relative;
    top: 50px;
    box-sizing:border-box;
}

.mySlides {
  display: none;
  box-sizing: border-box;
}

.cursor {
  cursor: pointer;
}

.prev,
.next {
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  box-sizing: border-box;
  right: 10%;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  box-sizing: border-box;
  background-color: rgba(119,150,203, 0.8);
}

.numbertext {
  box-sizing: border-box;
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  box-sizing: border-box;
  text-align: center;
  background-color: #7796CB;
  padding: 0 16px;
  color: white;
}

.row:after {
  box-sizing: border-box;
  content: "";
  display: table;
  clear: both;
}

.column {
  box-sizing: border-box;
  float: left;
  width: 16.66%;
}

.demo {
  box-sizing: border-box;
  opacity: 0.6;
}

.active,
.demo:hover {
  box-sizing: border-box;
  opacity: 1;
}