body {
  font-family: 'Utile Medium', 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff; /* style_1 */
  color: #000000;
  overflow-x: hidden; /* Prevent horizontal scroll from negative margins or wide elements */
}

.page-wrapper {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative; /* For elements positioned relative to the page */
}

.container {
  width: 100%;
  max-width: 1280px; /* Common content width (1440 - 2*80) */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px; /* Responsive padding */
  padding-right: 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .container {
     /* padding-left: 80px; /* As per Figma for large screens, but 1280px max-width handles this */
     /* padding-right: 80px; */
  }
}


/* Font helpers */
.font-ethnocentric { font-family: 'Ethnocentric', 'Impact', sans-serif; }
.font-utile-medium { font-family: 'Utile Medium', 'Inter', sans-serif; font-weight: 500; }
.font-utile-semibold { font-family: 'Utile Semibold', 'Inter', sans-serif; font-weight: 600; }
.font-utile-black { font-family: 'Utile Black', 'Inter', sans-serif; font-weight: 900; }

/* Text case helper */
.text-lower { text-transform: lowercase; }

/* Common button styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 500; /* Utile Medium is often 500 */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-header-contact { /* style_25 */
  background-color: #ffffff;
  color: #1d49a7;
  padding: 16px 24px;
  font-size: 15.998px; /* style_26 */
  line-height: 22.429px; /* style_26 */
}

.btn-outline-dark { /* style_56 */
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #000000;
  padding: 24px 48px;
  font-size: 16px; /* style_58 */
  font-family: 'Utile Semibold', 'Inter', sans-serif; /* style_58 */
  font-weight: 600; /* style_58 */
  line-height: 24px; /* style_58 */
}
.btn-outline-dark img { margin-right: 10px; }


.btn-accent { /* style_99 */
  background-color: #d73a36;
  color: #ffffff;
  padding: 24px 48px;
  font-size: 15.998px; /* style_62 */
  line-height: 22.429px; /* style_62 */
}
.btn-accent:hover {
    background-color: #c52824; /* Darken accent color on hover */
}

/* Icon styles */
.icon {
  display: inline-block;
  vertical-align: middle;
}
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }

/* Combined image container */
.merged-image-container {
  position: relative;
  display: inline-block; /* Or block, depending on layout */
}
.merged-image-container img {
  position: absolute;
  top: 0;
  left: 0;
}