@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about_us_section {
  display: block;
  width: min(960px, calc(100% - 32px));
  min-height: 60vh;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  position: relative;
  padding: 108px 10% 50px 10%;
  margin: 0 auto; /* Add this line to center the section */
}

.about_us_section h2 {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  line-height: 31px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 auto 30px;
  text-align: center;
  position: relative; /* Add position relative for positioning pseudo-elements */
  padding: 0 16px;
}

.about_us_section h2::before,
.about_us_section h2::after {
  content: "";
  flex: 1 1 140px;
  max-width: 180px;
  min-width: 48px;
  height: 2px;
  background-color: red;
}

.about_us_section span {
  display: block;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  margin: 20px auto 10px;
}

.about_us_section p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin: 0 auto 10px;
}

.about_us_section img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  margin-bottom: 20px;
}

.about_us_mission {
  color: rgba(255, 255, 255, 1);
  display: block;
  width: min(640px, 100%);
  box-sizing: border-box;
  border-radius: 10px;
  border-radius: 6px;
  box-shadow: 0 0 5px #cccccc;
  background-color: transparent;
  margin: 0 auto;
  padding: 5px 10px;
  text-align: center; /* Add this line to center the mission section */
}

.about_us_mission span {
  display: block;
  margin: 0 auto 10px;
  font-size: x-large;
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
}

.about_us_mission p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 10px;
  text-align: center;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .about_us_section {
    padding: 32px 16px 40px;
  }

  .about_us_section h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .about_us_section h2::before,
  .about_us_section h2::after {
    display: none;
  }
}
