  /* Full width header with background */
.site-header {
  width: 100%;
  background-color: #1c2228; /* Same dark background as your color-theme-D */
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

/* Inner container centered, max 120rem wide */
.header-inner {
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

/* Left and right sections */
.header-left,
.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-align: right;
  line-height: 1.2;
  color: rgba(255,255,255, .5);
  text-transform: uppercase;
}

/* Logo image initial size */
#site-logo {
  height: 110px;
  transition: height 0.3s ease;
}

/* Shrinked logo class */
#site-logo.shrink {
  height: 70px;
}

/* Wrapper for the whole section */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image styling */
.hero-banner__image-wrapper {
  position: relative;
  width: 100%;
  height: 390px; /* Fixed max height */
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center;
  overflow: hidden;
}

.hero-banner__image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay */
.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Adjust opacity as needed */
  z-index: 1;
}

/* Content overlay */
.hero-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 110rem;
  width: 100%;
  padding: 0 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Title text */
.hero-banner__title {
  font-family: "DM Sans", sans-serif;
  font-size: 42px;
  color: #fff;
  margin: 0 0 0 0;
  line-height: 1.2;
  font-weight: 500;
}

/* Subtitle text */
.hero-banner__subtitle {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: rgba(255,255,255, .7);
  margin: 0;
  font-weight: 400;
}

/* Reset margins between sections */
header.site-header {
  margin: 0;
}

.hero-banner {
  margin-top: 130px;
}
  
/* Section full width background */
.rich-text-section {
  width: 100%;
  background-color: rgb(194, 183, 172);
  padding: 3rem 0;
}

/* Centered container */
.rich-text-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Title styling */
.rich-text-title {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  color: #2b2c2d; /* Dark text color for readability */
  margin: 0 0 2rem 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Paragraph styling */
.rich-text-description {
  font-family: Jost, sans-serif;
  font-size: 16px;
  color: rgba(38,38,38, 0.75);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}  
  
.services-section {
  width: 100%;
  padding: 4rem 0;
  background: #fff;
}

.services-container {
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.service-card {
  background-color: rgb(244, 244, 244);
  border-radius: 8px;
  padding: 25px;
  flex: 1 1 calc(33.333% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  box-sizing: border-box;
}

.service-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.service-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: rgb(43, 44, 45);
  margin: 0 0 1rem 0;
  text-align: center;
}

.service-card p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(43, 44, 45, 0.75);
  margin: 0;
  text-align: center;
}

/* Responsive stacking on narrow screens */
@media (max-width: 900px) {
  .service-card {
    flex: 1 1 100%;
  }
}

.cfo-section {
  width: 100%;
  background-color: rgb(50, 56, 65);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cfo-container {
  max-width: 110rem;
  width: 100%;
  text-align: center;
}

.cfo-container h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin: 0;
}

/* Contact Section Container */
.contact-section {
  background-color: #f4f4f4;
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 90rem;
  width: 100%;
}

/* Title */
.contact-container h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: rgb(43,44,45);
  margin: 0 0 3rem 0;
  text-align: center;
}

/* Form Rows */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Form Fields */
.contact-field {
  flex: 1 1 100%;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 1.2rem;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  color: #333;
}

/* For 2-column layout on larger screens */
@media (min-width: 600px) {
  .contact-row:first-child .contact-field {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Button */
.contact-button {
  background-color: rgb(194, 183, 172);
  color: rgb(38, 38, 38);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #555;
}

/* Placeholder styling (optional) */
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(0,0,0,0.5);
}

/* Section background */
.about-section {
  background-color: white;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

/* Inner container with light background and radius */
.about-container {
  display: flex;
  align-items: stretch;        /* Makes children same height */
  gap: 2rem;                   /* Space between image/text */
  background-color: #f4f4f4;   /* Light background */
  border-radius: 8px;          /* Rounded corners */
  max-width: 110rem;           /* Limit width on large screens */
  width: 100%;                 /* Full width of parent */
  padding: 0;                  /* No inner padding by default */
}

/* Grid layout: image + text */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: stretch;
}

/* Image wrapper controls the fixed width of the image area */
.about-image {
  flex: 0 0 350px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* This ensures the image fills full height of .about-image */
.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content area */
.about-content {
  flex: 1 1 500px;
  padding: 6rem;
}

/* Heading */
.about-content h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: rgb(43,44,45);
  margin: 0 0 0.5rem 0;
}

/* Caption under name */
.about-caption {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: rgba(43,44,45,0.75);
  margin: 0 0 1.5rem 0;
}

/* Paragraph text */
.about-text p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: rgba(43,44,45,0.75);
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-image,
  .about-content {
    flex: 1 1 100%;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2,
  .about-caption {
    text-align: center;
  }
}

/* Section container */
.certifications-section {
  background-color: white;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

/* Inner container */
.certifications-container {
  max-width: 110rem;
  width: 100%;
}

/* Grid of items */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 7px; 
  align-items: center;
  justify-items: center;
}

/* Individual item */
.certification-item {
  background: none;
  text-align: center;
  padding: 1rem;
}

/* Images */
.certification-item img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

/* Text under each logo */
.certification-item p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: rgba(43,44,45,0.75);
  margin: 0;
}

/* Entire footer background */
.custom-footer {
  background-color: #1c2228;
  color: white;
  padding: 4rem 2rem 2rem;
}

/* Top section grid */
.footer-top {
  max-width: 110rem;
  margin: 0 auto;
  width: 100%;
}

/* 4 equal columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Logo image */
.footer-logo {
  max-width: 115px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Social icon */
.footer-social {
  max-width: 55px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Headings in footer */
.footer-block h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin: 0;
}

/* Bottom centered text */
.footer-bottom {
  margin-top: 5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-bottom p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Links styling */
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	font-size: 62.5%;
	height: 100%;
}

body {
	margin: 0;
	font-size: 1.5rem;
	letter-spacing: 0.06rem;
	line-height: calc(1 + 0.8 / 1.0);
	font-family: Jost, sans-serif;
	font-style: normal;
	font-weight: 400;
}