body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: #6B7074;
}

/* ---------------------------------
   NAV / HEADER
----------------------------------*/
.navbar {
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px;
}

.navbar a {
  color: #376CA8;
  text-decoration: none;
  font-weight: 600;
  margin-left: 30px;
}

.navbar a:hover {
  text-decoration: underline;
}

/* ---------------------------------
   HOME HERO SECTION
----------------------------------*/
.hero {
  max-width: 1100px;
  margin: 100px auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 3rem;
}

.hero-logo {
  max-width: 300px;
}

.hero-title {
  color: #2C7748;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 32px;
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #376CA8;
  color: #fff;
  text-decoration: none;
  margin-right: 14px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #2C7748;
}

.btn-secondary {
  color: #376CA8;
  text-decoration: underline;
  font-weight: 600;
}

/* ---------------------------------
   ABOUT + INNER PAGES
----------------------------------*/
.page-section {
  max-width: 1100px;
  margin: 100px auto;
  display: flex;
  gap: 80px;
  padding: 0 3rem;
}

.about-logo {
  max-width: 280px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C7748;
  margin-bottom: 24px;
}

.page-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-btn {
  margin-top: 20px;
}

/* ---------------------------------
   CONTACT PAGE (centred)
----------------------------------*/
.contact-wrapper {
  max-width: 800px;
  margin: 150px auto;
  text-align: center;
  padding: 0 2rem;
}

/* ---------------------------------
   FOOTER
----------------------------------*/
.footer {
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
  color: #6B7074;

  /* If page includes .footer-logo, centre it */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 52px;
  opacity: 0.8;
}

/* ---------------------------------
   RESPONSIVE
----------------------------------*/
@media screen and (max-width: 768px) {
  .hero,
  .page-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}
