 /* Basic styling for demonstration */
 body {
  margin: 0;
  font-family: Arial, sans-serif;
}
header {
  background-color: #082444;
  color: #fff;
  padding: 20px;
  text-align: right;
  position: sticky;
  top: 0;
  z-index: 999;
}
header a {
  color: white;
}
header a:link { 
  text-decoration: none; 
} 
section {
  padding: 3em 0;
  text-align: center;
}
.section1 {
  padding: 5em 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  color: #fff;
}
.section1 h1 {
  font-size: 3em;
}

.section2 {
  background-color: #324964;
  color: #fff;
  align-items: top;
}

.section3 {
  background-color: #647992;
  padding: 0 0;
}
.section4 {
  background-color: #c9d3df;

}
.hero-title {
  margin: auto;
  width:50%;
}
.hero-title h1 {
  -webkit-text-stroke: 1px black; 
}
.usp { 
  display: inline-block; 
  width: 20%;
  padding: 0 3em;
  text-align: left;
  vertical-align: top;
}
.office {
  display: flex;
}
.office-text {
  flex: 1;
  padding: 4em;
}
.office-text div {
  margin: auto;
  width:80%;
  text-align: left;
  color: #fff;
}
.office-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden
}
.office-image img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%
}

.contact {
  display: flex; 
  padding: 1em 1em 0 0
}

.contact > *  {
  flex: 0.5 1 0 
}

.contact-text {
  padding-left: 10em;
  text-align: left;
}

.container {
  max-width: 600px;
  padding-bottom: 3em;
  padding-right: 10em;

  border-radius: 5px;
  text-align: left;
}
.container input[type="text"], textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}
.container input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.container input[type="submit"]:hover {
  background-color: #45a049;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
}
