.page-about {
  color: #333333; /* Dark text for default light body background */
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
}

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

.page-about__hero-title {
  font-size: 3.2em;
  color: #B80000; /* Main brand color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-about__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.page-about__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__button--primary {
  background-color: #B80000;
  color: #ffffff;
}

.page-about__button--primary:hover {
  background-color: #8a0000;
  transform: translateY(-2px);
}

.page-about__button--secondary {
  background-color: #FFD700;
  color: #333333;
}

.page-about__button--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

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

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

.page-about__section-title {
  font-size: 2.8em;
  color: #B80000;
  text-align: center;
  margin-bottom: 50px;
  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;
}

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

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

.page-about__mission-item {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about__mission-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__mission-heading {
  font-size: 1.8em;
  color: #B80000;
  margin-bottom: 15px;
}

.page-about__mission-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #666;
}

.page-about__history-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-about__history-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.page-about__history-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-about__history-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
}

.page-about__history-text p {
  margin-bottom: 20px;
}

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

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

.page-about__value-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-about__value-title {
  font-size: 1.6em;
  color: #B80000;
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

.page-about__cta-section {
  background-color: #B80000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2.4em;
  }
  .page-about__history-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__history-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__intro-text {
    font-size: 1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-about__mission-section, .page-about__history-section, .page-about__values-section, .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__container {
    padding: 20px 15px;
  }
  .page-about__history-image {
    max-width: 100%;
  }
  .page-about__cta-title {
    font-size: 2.5em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  /* Ensure all content images do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__mission-icon {
    max-width: 100%;
    height: auto;
  }
  .page-about__history-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__button {
    width: 90%;
  }
}