.page-about {
  background-color: #B71C1C;
  color: #FFF5E1;
  font-family: sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: #7A0E0E; /* Deep Red for hero section background */
  border-bottom: 3px solid #F2B544;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F4D34D; /* Gold for main title */
  margin-bottom: 15px;
}

.page-about__description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-about__hero-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F4D34D; /* Gold for section titles */
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFCC66 0%, #F4D34D 100%); /* Glow gradient */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__mission-section,
.page-about__why-choose-us-section,
.page-about__commitment-section {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG */
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-about__mission-card {
  background-color: #7A0E0E; /* Deep Red */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-about__mission-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #F2B544;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFCC66; /* Glow */
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1.05em;
  color: #FFF5E1;
}

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

.page-about__feature-item {
  background-color: #7A0E0E; /* Deep Red */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #F2B544;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #FFCC66; /* Glow */
  margin-bottom: 10px;
}

.page-about__feature-text {
  font-size: 1em;
  color: #FFF5E1;
}

.page-about__why-choose-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 40px auto 0;
  display: block;
  border: 2px solid #F2B544;
}

.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-color: #7A0E0E; /* Deep Red */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #F2B544;
}

.page-about__item-title {
  font-size: 1.7em;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-about__item-text {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #FFF5E1;
}

.page-about__item-link {
  display: inline-block;
  color: #FFCC66; /* Glow */
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFCC66;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-about__item-link:hover {
  color: #F4D34D; /* Gold */
  border-color: #F4D34D;
}

.page-about__cta-section {
  background-color: #C91F17; /* Main Color */
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #F2B544;
}

.page-about__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #FFD86A; /* Lighter gold for contrast */
  margin-bottom: 20px;
}

.page-about__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF5E1;
}

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

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

.page-about__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
}

.page-about__cta-button--secondary {
  background-color: #E53935; /* Auxiliary color */
  color: #FFF5E1;
  border: 2px solid #F2B544;
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__mission-grid {
    grid-template-columns: 1fr;
  }
  .page-about__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 30px;
  }
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__description {
    font-size: 1em;
  }
  .page-about__hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-about__mission-section,
  .page-about__why-choose-us-section,
  .page-about__commitment-section {
    padding: 40px 0;
  }
  .page-about__mission-card,
  .page-about__feature-item,
  .page-about__commitment-item {
    padding: 20px;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__feature-title {
    font-size: 1.4em;
  }
  .page-about__item-title {
    font-size: 1.5em;
  }
  .page-about__cta-section {
    padding: 60px 20px;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-text {
    font-size: 1.1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    width: 100%;
    max-width: 280px;
  }
  /* Ensure images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.5em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.3em;
  }
  .page-about__feature-title {
    font-size: 1.2em;
  }
  .page-about__item-title {
    font-size: 1.3em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__hero-image {
    min-height: 200px; /* Ensure minimum size */
  }
  .page-about__mission-image {
    min-height: 200px;
  }
  .page-about__why-choose-image {
    min-height: 200px;
  }
}