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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text on dark background */
  position: relative;
  overflow: hidden;
}

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

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

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-about__hero-button:hover {
  background-color: #FFD700; /* Gold hover */
  transform: translateY(-3px);
}

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

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

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

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

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
}

.page-about__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-about__mission-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-about__mission-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__mission-card:hover {
  transform: translateY(-10px);
}

.page-about__card-image {
  width: 100%;
  height: 250px; /* Ensure images are not small */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-about__card-description {
  font-size: 1em;
  color: #666666;
}

.page-about__why-choose-section {
  padding: 80px 0;
}

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

.page-about__feature-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__feature-icon {
  width: 100%; /* Make sure it's not a small icon */
  max-width: 250px; 
  height: 200px; /* Minimum height for content images */
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

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

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

.page-about__cta-buttons {
  text-align: center;
  margin-top: 60px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-about__cta-button--register:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-about__cta-button--promo {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-about__cta-button--promo:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

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

.page-about__contact-section .page-about__section-title {
  color: #FFFFFF;
}

.page-about__contact-section .page-about__section-title::after {
  background-color: #FCBC45;
}

.page-about__contact-section .page-about__section-text {
  color: #CCCCCC;
}

.page-about__contact-links {
  margin-top: 40px;
}

.page-about__contact-link {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.page-about__contact-link:hover {
  background-color: #FFD700;
}

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

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

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

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

  .page-about__mission-cards, .page-about__features-grid {
    grid-template-columns: 1fr;
  }

  .page-about__cta-button {
    margin: 10px 0;
    display: block;
  }

  .page-about__contact-link {
    margin: 10px 0;
    display: block;
  }
  
  /* Mobile content area image overflow prevention */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}