.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-about__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-about__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-about__story-section,
.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__cta-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.page-about__story-container,
.page-about__mission-vision-container,
.page-about__why-choose-container,
.page-about__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__story-text {
  font-size: 1.1em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-about__story-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-about__mission-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-about__mission-card,
.page-about__vision-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

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

.page-about__card-text {
  font-size: 1em;
  color: #555555;
}

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

.page-about__feature-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-about__feature-icon {
  width: 100%; /* Ensure images are not tiny */
  max-width: 400px; /* Max width for feature images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-text {
  font-size: 1.1em;
  color: #333333;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

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

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

.page-about__cta-button--download {
  background-color: #000000; /* Main color for download */
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__story-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-section,
  .page-about__cta-section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__mission-vision-container {
    grid-template-columns: 1fr;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__feature-icon {
    max-width: 100%;
    height: auto; /* Ensure images scale */
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all images in content area are responsive and not too small */
  .page-about__hero-image, 
  .page-about__story-image, 
  .page-about__feature-icon, 
  .page-about__mission-card img, 
  .page-about__vision-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
  .page-about__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}