.page-about-us {
  background-color: #000000;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
}

.page-about-us__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.page-about-us__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-about-us__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about-us__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-about-us__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-about-us__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E5E5E5;
}

.page-about-us__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-about-us__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-about-us__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #FFFFFF;
}

.page-about-us__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-about-us__button--explore {
  background-color: transparent;
  color: #FCBC45;
  border: 1px solid #FCBC45;
}

.page-about-us__button--explore:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-about-us__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-about-us__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-about-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.page-about-us__section-title {
  font-size: 2.2em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about-us__story-section,
.page-about-us__values-section {
  background-color: #0d0d0d;
  padding: 60px 0;
}

.page-about-us__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about-us__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-about-us__text-content {
  flex: 1;
  min-width: 300px;
}

.page-about-us__text-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #E5E5E5;
}

.page-about-us__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about-us__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__why-choose-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-about-us__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-about-us__feature-card {
  background-color: #0d0d0d;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #333333;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-about-us__feature-card:hover {
  transform: translateY(-5px);
  border-color: #FCBC45;
}

.page-about-us__feature-title {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about-us__feature-card p {
  color: #E5E5E5;
  line-height: 1.6;
}

.page-about-us__why-choose-cta {
  text-align: center;
}

.page-about-us__link-text {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-about-us__link-text:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-about-us__cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

.page-about-us__cta-section .page-about-us__section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-about-us__cta-section .page-about-us__description {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-about-us__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .page-about-us__hero-content {
    padding: 30px 15px;
  }

  .page-about-us__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-about-us__description {
    font-size: 1em;
  }

  .page-about-us__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about-us__button {
    width: 100%;
    max-width: 250px;
  }

  .page-about-us__container {
    padding: 30px 15px;
  }

  .page-about-us__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about-us__content-wrapper {
    flex-direction: column;
  }

  .page-about-us__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-about-us__features-grid {
    grid-template-columns: 1fr;
  }

  .page-about-us__feature-card {
    padding: 25px;
  }

  .page-about-us__feature-title {
    font-size: 1.2em;
  }

  .page-about-us__cta-actions {
    flex-direction: column;
  }

  /* Mobile overflow prevention */
  .page-about-us img {
    max-width: 100%;
    height: auto;
  }

  .page-about-us__content-image {
    min-width: 200px;
    min-height: 200px;
  }

}

@media (max-width: 480px) {
  .page-about-us__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-about-us__section-title {
    font-size: 1.5em;
  }
}