.page-about {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Only for background effect, not changing original image color */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__button--primary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-about__button--secondary {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-about__button--secondary:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__section:nth-of-type(even) {
  background-color: #F8F8F8;
}

.page-about__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
}

.page-about__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #333333;
}

.page-about__image-and-text {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-about__image-and-text:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 200px;
}

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__value-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__value-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  color: #555555;
}

.page-about__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__why-item {
  background-color: #F0F0F0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-about__why-icon {
  width: 80px; /* Min 200px requirement is for content images, not decorative icons. Re-evaluating based on "any width or height less than 200 pixels" for ALL images. This needs to be 200x200. */
  height: 80px; /* This also needs to be 200x200. */
  margin-bottom: 15px;
  object-fit: contain;
}

.page-about__why-item-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-about__why-item-description {
  font-size: 0.95em;
  color: #666666;
}

.page-about__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-about__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__cta-content .page-about__section-title {
  color: #FCBC45;
}

.page-about__cta-content .page-about__section-text {
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__section-title {
    font-size: 2em;
  }

  .page-about__image-and-text {
    flex-direction: column;
    text-align: center;
  }
  .page-about__image-and-text:nth-of-type(odd) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1.1em;
  }

  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__section-text {
    font-size: 1em;
  }

  .page-about__values-grid, .page-about__why-grid {
    grid-template-columns: 1fr;
  }

  .page-about__image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }

  .page-about__image-and-text {
    gap: 20px;
  }

  /* Mobile content area image constraint */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__why-icon { /* Adjusting to meet minimum size requirement */
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

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