.page-about__hero-section {
  background-color: #1A202C; /* Main brand color */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(255, 215, 0, 0.2));
  z-index: 0;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #1A202C; /* Dark text on accent background */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__section {
  padding: 60px 0;
  background-color: #2D3748; /* Slightly lighter dark background for sections */
  color: #E2E8F0;
}

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

.page-about__heading {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: left;
}

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

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__grid--reverse .page-about__content-block {
  order: 2;
}

.page-about__grid--reverse .page-about__image-block {
  order: 1;
}

.page-about__content-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-about__image-block {
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__value-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-about__value-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #CBD5E0;
}

.page-about__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-about__cta {
  background-color: #FFD700; /* Accent color for CTA section background */
  color: #1A202C;
  padding: 80px 0;
  text-align: center;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-about__button--primary {
  background-color: #1A202C; /* Dark background for primary CTA */
  color: #FFD700; /* Accent text */
}

.page-about__button--primary:hover {
  background-color: #0d1016;
  transform: translateY(-3px);
}

.page-about__button--secondary {
  background-color: transparent;
  color: #1A202C;
  border-color: #1A202C;
}

.page-about__button--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }

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

  .page-about__heading {
    font-size: 2em;
    text-align: center;
  }

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

  .page-about__grid--reverse .page-about__content-block,
  .page-about__grid--reverse .page-about__image-block {
    order: unset;
  }

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

  .page-about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-about__button {
    width: 80%;
    max-width: 300px;
  }
}

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

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

  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__hero-section, .page-about__section, .page-about__cta {
    padding: 60px 0;
  }
}