.page-about {
  color: #333333; /* Default dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-about__hero-section {
  background-color: #0A192F; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-about__hero-image {
  max-width: 100%;
  overflow: hidden; /* Ensure image doesn't overflow container */
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-about__story-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-about__story-title, .page-about__mission-title, .page-about__why-choose-us-title, .page-about__cta-title {
  font-size: 2.8em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-about__story-button {
  display: inline-block;
  background-color: #0A192F;
  color: #FFD700;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__story-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-about__story-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-about__mission-values-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-about__mission-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #555555;
}

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

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

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

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

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

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

.page-about__value-link:hover {
  color: #0A192F;
}

.page-about__why-choose-us-section {
  background-color: #0A192F;
  color: #ffffff;
  padding: 60px 0;
}

.page-about__why-choose-us-title {
  color: #FFD700;
}

.page-about__why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-about__why-choose-us-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-about__why-choose-us-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__why-choose-us-item img {
  width: 100%;
  max-width: 400px; /* Constrain image width within the item */
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__why-choose-us-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__why-choose-us-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #0A192F, #000000);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

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

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

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

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 50px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__story-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image {
    order: -1; /* Image first on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__why-choose-us-title, .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__content-container {
    padding: 30px 15px;
  }
  .page-about__values-grid, .page-about__why-choose-us-grid {
    grid-template-columns: 1fr;
  }
  .page-about__hero-image img,
  .page-about__story-image img,
  .page-about__why-choose-us-item img {
    max-width: 100%;
    height: auto;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-about__story-title, .page-about__mission-title, .page-about__why-choose-us-title, .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__value-heading {
    font-size: 1.5em;
  }
  .page-about__why-choose-us-heading {
    font-size: 1.4em;
  }
}