*,
*::before,
*::after {
  box-sizing: border-box;
}

body.page-site {
  margin: 0;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  background: #fff;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-menu {
  background: #272727;
  padding: 0 24px;
}

.page-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  max-width: 1170px;
  margin: 0 auto;
}

.page-menu a {
  display: block;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.page-menu a:hover,
.page-menu a.active {
  color: #b4bd10;
}

.page-header {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-logo img {
  display: block;
  height: 58px;
  width: auto;
}

.page-locations {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.page-slogan {
  flex: 1 1 100%;
  margin: 12px 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #272727;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.page-main {
  flex: 1;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.page-title {
  margin: 0 0 32px;
  font-size: 34px;
  line-height: 1.2;
  color: #272727;
  text-transform: uppercase;
}

.page-content p {
  margin: 0 0 12px;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  margin: 20px 0 10px;
  color: #272727;
  line-height: 1.3;
}

.page-content a {
  color: #5b9073;
}

.page-content img {
  max-width: 100%;
  height: auto;
}

.page-content ul,
.page-content ol {
  margin: 0 0 12px 20px;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.page-content th,
.page-content td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  text-align: left;
}

.page-content th {
  background: #f5f5f5;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  border: 1px solid #e2e2e2;
  padding: 24px;
  background: #fff;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.blog-card h3 a {
  color: #272727;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: #5b9073;
}

.page-footer {
  background: #272727;
  color: #fff;
  padding: 32px 24px;
  margin-top: auto;
}

.page-footer-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.page-footer p {
  margin: 0 0 6px;
}

.page-footer a {
  color: #fff;
}

.page-footer-social {
  display: flex;
  gap: 12px;
}

.page-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

/* Homepage */
.home-section {
  margin-bottom: 56px;
}

.home-heading {
  margin: 0 0 24px;
  font-size: 28px;
  color: #272727;
  text-transform: uppercase;
  font-weight: 400;
}

.home-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.home-intro-text {
  flex: 1 1 360px;
}

.home-intro-text p {
  font-size: 20px;
  line-height: 1.5;
  color: #666;
}

.home-intro-video {
  flex: 1 1 420px;
}

.home-intro-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.home-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: #5b9073;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 27px;
}

.home-btn:hover {
  background: #272727;
}

.home-btn-light {
  background: #b4bd10;
  color: #272727;
}

.home-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

.home-service-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}

.home-service-card img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.home-service-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
  color: #272727;
}

.home-service-card p {
  margin: 0;
  font-size: 14px;
}

.home-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  padding: 32px;
  background: #eef2ef;
}

.home-newsletter p {
  margin: 0;
  font-size: 18px;
}

.home-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.home-expertise article {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

.home-expertise img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

.home-expertise h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #272727;
}

.home-expertise p {
  margin: 0;
  font-size: 14px;
}

.home-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-gallery img {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 280px;
  height: 220px;
  object-fit: cover;
  border: 1px solid #e2e2e2;
}

.home-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.home-quotes blockquote {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  margin: 0;
  padding: 24px;
  background: #f7f7f7;
  border-left: 4px solid #5b9073;
}

.home-quotes footer {
  margin-top: 12px;
  font-size: 14px;
  color: #272727;
}

.home-careers {
  text-align: center;
  padding: 40px 24px;
  background: #272727;
  color: #fff;
}

.home-careers .home-heading,
.home-careers p {
  color: #fff;
}
