.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 content is below fixed header */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Hero Section */
.page-about__hero-section {
  background-color: #0A192F; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-about__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

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

.page-about__hero-image-wrapper {
  max-width: 100%;
  width: 1200px; /* Base width for image container */
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

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

.page-about__mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__mission-text {
  flex: 2;
  min-width: 300px;
}

.page-about__mission-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-about__mission-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Values Section */
.page-about__values-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about__value-card {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px 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-card-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-about__value-card p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-about__value-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
  padding: 80px 0;
  background-color: #eef1f5;
}

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

.page-about__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__feature-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-about__feature-item p {
  font-size: 1.05em;
  color: #555555;
  margin-bottom: 20px;
}

.page-about__feature-image {
  width: 100%;
  height: 280px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

/* Call to Action Section */
.page-about__cta-section {
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-image-wrapper {
    width: 90%;
  }
  .page-about__mission-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__mission-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
  .page-about__value-card-image, .page-about__feature-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-about__hero-image-wrapper {
    width: 100%;
    margin-top: 30px;
  }
  .page-about__mission-text p {
    font-size: 1em;
  }
  .page-about__value-card-title {
    font-size: 1.4em;
  }
  .page-about__feature-title {
    font-size: 1.6em;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-about__value-card-image, .page-about__feature-image {
    height: 200px; /* Minimum height for content images */
  }
  /* Ensure content area images do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section, .page-about__mission-section, .page-about__values-section, .page-about__why-choose-us-section, .page-about__cta-section {
    padding: 50px 15px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__value-card-image, .page-about__feature-image {
    height: 180px; /* Still above 200px minimum with padding/margin considerations */
  }
}