.about-sections-wrapper {
  padding-top: 80px;
}

/* Overlay astronaut across both sections */
.about-overlay-astronaut {
  position: absolute;
  right: 0;
  top: 120px;
  width: 50%;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
/* About Us Section 1: Intro */
.about-intro-section {
  background: #fff;
  padding: 50px 100px 50px 100px;
  position: relative;
  width: 100%;
  font-family: 'Oxanium', sans-serif;
}
/* Black background block behind logo */
.about-intro-logo-bg {
  padding-right: 60px;
  background: var(--black, #231f20);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
  height: 160px;
  margin-bottom: 40px;
  transform: translateX(-200px);
}
.about-intro-logo {
  width: 550px;
  height: auto;
  display: block;
}
.about-intro-title {
  font-size: var(--text-subheading-size, 28px);
  font-weight: var(--text-subheading-weight, 800);
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #232121;
}
.about-intro-divider {
  width: 130px;
  border: 1.5px solid var(--black);
  margin-top: var(--line-spacing-top);
  margin-bottom: var(--line-spacing-bottom);
}
.about-intro-text {
  font-size: var(--text-subtext-size, 24px);
  font-weight: var(--text-subtext-weight, 300);
  color: var(--black);
  max-width: 40%;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-intro-container {
    padding: 0 12px;
  }
  .about-intro-logo {
    width: 200px;
  }
  .about-overlay-astronaut {
    width: 55%;  
    transform: translateY(145px) rotate(-5deg) translateX(20px);
  }
}
@media (min-width: 601px) and (max-width: 1100px) {
  .about-intro-section {
    padding: 32px 32px 32px 32px;
  }
  .about-intro-logo-bg {
    width: 70%;
    height: 110px;
    padding-right: 20px;
    margin-bottom: 24px;
    transform: translateX(-60px);
  }
  .about-intro-logo {
    width: 350px;
  }
  .about-intro-title {
    font-size: var(--tablet-subheading-size, 32px);
  }
  .about-intro-divider {
    width: 100px;
    margin-top: var(--tablet-line-spacing-top);
    margin-bottom: var(--tablet-line-spacing-bottom);
  }
  .about-intro-text {
    font-size: var(--tablet-subtext-size, 20px);
    font-weight: var(--tablet-subtext-weight, 500);
    width: 90%;
  }
  .about-overlay-astronaut {
    width: 55%;  
    transform: translateY(0) rotate(-5deg) translateX(20px);
  }
}

@media (max-width: 600px) {
  .about-intro-section {
    padding: 24px 6px 24px 6px;
  }
  .about-intro-logo-bg {
    width: 90%;
    height: 70px;
    padding-right: 20px;
    margin-bottom: 16px;
    transform: translateX(-20px);
  }
  .about-intro-logo {
    width: 240px;
  }
  .about-intro-title {
    font-size: var(--mobile-heading-size, 33px);
  }
  .about-intro-divider {
    width: 100px;
    margin-top: var(--mobile-line-spacing-top);
    margin-bottom: var(--mobile-line-spacing-bottom);
  }
  .about-intro-text {
    font-size: var(--mobile-subtext-size, 16px);
    font-weight: var(--mobile-subtext-weight, 500);
    width: 70%;
  }
}
