.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Dark background, so light text */
  background-color: #121212; /* Body background color from shared.css */
  padding-top: 120px; /* Adjust for fixed header */
}

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

.page-about__hero-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #000080; /* Auxiliary color for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  font-weight: bold;
  line-height: 1.2;
}

.page-about__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #FFD700; /* Gold accent */
}

.page-about__section-title--light {
  color: #ffffff;
}

.page-about__section-title--dark {
  color: #000080;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-about__section-description--dark {
  color: #333333;
}

.page-about__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-about__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
  min-width: 300px;
  color: #f0f0f0;
}

.page-about__text-block--light {
  color: #ffffff;
}

.page-about__text-block p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.05em;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-about__intro-section, .page-about__mission-values-section, .page-about__cta-final-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-about__history-section, .page-about__commitment-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-about__dark-bg {
  background-color: #000080;
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-about__gold-bg {
  background-color: #FFD700;
  color: #333333;
}

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

.page-about__grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-about__card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about__card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000080; /* Dark blue for titles */
  font-weight: bold;
}

.page-about__list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.page-about__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
}

.page-about__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn-secondary:hover {
  background: #000066;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-about__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-about__cta-text {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__cta-text--dark {
  color: #000080;
}

.page-about__feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

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

.page-about__feature-card p {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: left;
}

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

.page-about__commitment-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

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

.page-about__commitment-item p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #f0f0f0;
}

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

  .page-about__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-about__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__container {
    padding: 0 15px;
  }

  .page-about__hero-section {
    padding: 60px 15px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__text-block, .page-about__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-about__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-about__intro-section, .page-about__mission-values-section, .page-about__cta-final-section, 
  .page-about__history-section, .page-about__commitment-section, .page-about__why-choose-section {
    padding: 50px 0;
  }

  .page-about__grid, .page-about__grid--2-col, .page-about__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__card, .page-about__feature-card, .page-about__commitment-item {
    padding: 25px;
  }

  .page-about__card-icon {
    width: 80px;
    height: 80px;
  }

  .page-about__card-title, .page-about__feature-title, .page-about__commitment-title {
    font-size: 1.5em;
  }

  .page-about__list li, .page-about__text-block p, .page-about__feature-card p, .page-about__commitment-item p {
    font-size: 0.95em;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__cta-text {
    font-size: 1.2em;
  }
  
  .page-about__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

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

  .page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}