.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #1A202C; /* Deep charcoal background */
}

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

.page-about__hero {
  background: linear-gradient(135deg, #FFD700, #1A202C);
  padding: 80px 0;
  text-align: center;
  color: #1A202C; /* Dark text on light gradient background */
}

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #1A202C; /* Dark text for title */
}

.page-about__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #333333; /* Slightly lighter dark text */
}

.page-about__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__btn:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-2px);
}

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

.page-about__section:nth-of-type(odd) {
  background-color: #2A313C; /* Slightly lighter charcoal for alternating sections */
}

.page-about__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold heading */
  margin-bottom: 25px;
}

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

.page-about__flex-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__flex-row--reverse {
  flex-direction: row-reverse;
}

.page-about__content-block {
  flex: 1;
}

.page-about__content-block p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Light grey text */
}

.page-about__content-block strong {
  color: #FFD700; /* Gold for strong text */
}

.page-about__link-text {
  color: #FFD700; /* Gold link text */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__link-text:hover {
  color: #E0B500; /* Darker gold on hover */
  text-decoration: underline;
}

.page-about__image-block {
  flex: 1;
  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__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-about__value-card:hover {
  transform: translateY(-5px);
  background-color: #2A313C;
}

.page-about__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter is applied to image */
}

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

.page-about__value-card p {
  color: #B0B0B0; /* Slightly darker light grey for card text */
}

.page-about__cta {
  background-color: #2A313C;
  text-align: center;
  padding: 80px 0;
}

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

.page-about__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-about__cta-buttons .page-about__btn {
  margin: 0 10px;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-about__btn--primary:hover {
  background-color: #E0B500;
}

.page-about__btn--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__title {
    font-size: 2.5em;
  }
  .page-about__subtitle {
    font-size: 1.2em;
  }
  .page-about__flex-row {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__flex-row--reverse {
    flex-direction: column;
  }
  .page-about__heading {
    font-size: 2em;
    text-align: center;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-buttons .page-about__btn {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .page-about__title {
    font-size: 2em;
  }
  .page-about__subtitle {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
}