* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page {
  width: 992px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
}

.nav {
  background-color: lightgray;
  padding: 10px;
  text-align: center;
  margin-bottom: 0; 
}

.nav a {
  margin: 0 10px;
  color: black;
  font-weight: bold;
}

.nav a:hover {
  color: blue;
}

.top-box {
  background-color: lightblue;
  height: 300px;
}

.top-left {
  float: left;
  width: 50%;
  height: 100%;
}

.top-right {
  float: right;
  width: 50%;
  height: 100%;
}

.top-text-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  margin-top: 60px;
}

.header-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-block;
  background-color: blue;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  margin-top: 10px;
}

.section {
  background-color: darkgray;
  padding: 20px;
}

.section h3 {
  margin-bottom: 10px;
  color: black;
  text-align: center;
}

.section p {
  font-size: 14px;
  color: black;
  margin-top: 10px;
  text-align: center;
}

.img-row {
  text-align: center;
  margin-top: 10px;
}

.imgbox {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 10px 0;
  background-color: lightgray;
  display: inline-block;
}

.img-row .imgbox {
  width: 22%;
  margin: 1%;
  height: 150px;
}

.left-section {
  text-align: left;
}

.left-title {
  color: black;
  margin-bottom: 10px;
}

.left-text {
  font-size: 14px;
  color: black;
  margin-bottom: 20px;
}

.img-row-center {
  text-align: center;
}

.img-row-center .small {
  width: 40%;
  margin: 1%;
  height: 150px;
  object-fit: cover;
}

.footer {
  text-align: center;
  padding: 15px;
  background-color: lightgray;
  font-size: 14px;
}






.page2-hero {
  padding: 0px 0;
  margin-top: 0;
}

.page2-hero-text {
  float: right;
  width: 45%;
  text-align: center;
  padding-top: 60px;
}

.page2-hero-text h1 {
  font-size: 28px;
  color: black;
  margin-bottom: 10px;
}

.page2-hero-text h2 {
  font-size: 16px;
  color: black;
  margin-bottom: 15px;
}

.page2-hero-image {
  float: left;
  width: 50%;
}

.page2-hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page2-circles {
  text-align: center;
  padding: 30px 0;
}

.circle-box {
  display: inline-block;
  width: 30%;
  margin: 1%;
  vertical-align: top;
}

.circle-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  background-color: lightgray;
  margin-bottom: 10px;
}

.circle-box p {
  font-size: 14px;
  color: black;
  padding: 0 10px;
}


.page2-gray-section {
  background-color: darkgray;
  padding: 20px 0;
}

.gray-block {
  padding: 20px;
  overflow: hidden;
}

.gray-img {
  width: 50%;
}

.left-img {
  float: left;
  padding-right: 20px;
}

.right-img {
  float: right;
  padding-left: 20px;
}

.gray-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: lightgray;
}

.gray-text {
  width: 50%;
  float: left;
  font-size: 14px;
  color: black;
}

.gray-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
}



.page3-banner {
  position: relative;
  height: 300px;
  margin-top: 0; 
}

.page3-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page3-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: blue;
}

.page3-banner-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.page3-banner-text h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.page3-gray {
  background-color: darkgray;
  padding: 30px;
  text-align: center;
}

.page3-gray h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.page3-gray p {
  font-size: 14px;
  color: black;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page3-grid {
  text-align: center;
}

.grid-img {
  display: inline-block;
  margin: 10px;
}

.grid-img.square img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  background-color: lightgray;
}

.grid-img.full img {
  width: 480px; 
  height: 150px;
  object-fit: cover;
  background-color: lightgray;
  display: block;
  margin: 20px auto;
}

.btn.center {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 8px 20px;
  border-radius: 50px;
  margin: 30px auto 0;
  text-align: center;
}

