body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif; /* Defaulting to Inter, Myriad Pro is not a standard web font */
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden; /* From style_1 */
}

.main-container {
  max-width: 1370px; /* 1920 (figma width) - 2 * 275 (root x offset) */
  margin: 0 auto;
  padding: 0 20px; /* Add some padding for smaller screens */
  box-sizing: border-box;
}

/* Helper for full-width sections if background needs to span */
.section-full-width {
  width: 100%;
}

.section-full-width .main-container {
   /* Content within full-width section is still constrained */
}


h1, h2, h3, p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.myriad-pro-font {
  font-family: 'Myriad Pro', 'Inter', sans-serif; /* Fallback for Myriad Pro */
}

.inter-font {
  font-family: 'Inter', sans-serif;
}

/* Common styles from JSON */
.style-text-myriad-pro-regular { font-family: 'Myriad Pro', 'Inter', sans-serif; font-weight: 400; }
.style-text-myriad-pro-semibold { font-family: 'Myriad Pro', 'Inter', sans-serif; font-weight: 600; }
.style-text-myriad-pro-bold { font-family: 'Myriad Pro', 'Inter', sans-serif; font-weight: 700; }
.style-text-myriad-pro-light { font-family: 'Myriad Pro', 'Inter', sans-serif; font-weight: 300; }
.style-text-inter-thin { font-family: 'Inter', sans-serif; font-weight: 100; }

.line-separator {
  border: none;
  height: 1px; /* Adjusted from 0.5px for better visibility */
  background-color: #000000; /* style_44 border color */
  margin: 40px 0;
}

.full-width-line-separator {
  border: none;
  height: 1px;
  background-color: #000000;
  margin: 40px auto; /* Centered if not truly full-width in context */
  width: 100vw; /* Spans full viewport width */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-container {
    padding: 0 15px;
  }
  .flex-column-mobile {
    flex-direction: column;
    align-items: center;
  }
  .flex-column-mobile > * {
    width: 100% !important; /* Ensure children take full width in column */
    margin-bottom: 20px;
  }
  .flex-column-mobile > *:last-child {
    margin-bottom: 0;
  }
}