.page-about {
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background-color: #C91F17; /* Main Color */
  color: #FFF5E1;
}

.page-about__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-about__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-about__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-about__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-about__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-about__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
  background: transparent;
  color: #FFD86A; /* Gold */
  border: 2px solid #FFD86A; /* Gold */
}

.page-about__btn-secondary:hover {
  background: #FFD86A;
  color: #7A0E0E; /* Deep Red */
}

.page-about__btn-mt {
    margin-top: 20px;
}

.page-about__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1; /* Text Main */
  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: #F4D34D; /* Gold */
  border-radius: 2px;
}

.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__history-section,
.page-about__commitment-section,
.page-about__faq-section,
.page-about__cta-bottom-section {
  padding: 60px 0;
}

.page-about__grid-two-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-about__card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
}

.page-about__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A; /* Lighter Gold for titles */
}

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

.page-about__value-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
}

.page-about__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2B544; /* Border */
  box-shadow: 0 0 15px rgba(255, 204, 102, 0.7); /* Glow */
}

.page-about__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-about__value-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A; /* Lighter Gold for titles */
}

.page-about__content-column {
  flex: 1 1 50%;
  min-width: 300px;
}

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

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

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__feature-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFD86A"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left 8px center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #FFF5E1;
}

.page-about__feature-list li strong {
    color: #FFD86A;
}

.page-about__content-text-block {
  font-size: 1.05rem;
  color: #FFF5E1;
}

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

.page-about__content-text-block img {
  margin: 20px auto;
}

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

.page-about__faq-list {
  margin-top: 30px;
}

.page-about__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: #FFD86A; /* Gold for questions */
  background-color: #C91F17; /* Main Color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details tag */
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05rem;
  color: #FFF5E1;
}

.page-about__cta-bottom-section {
  text-align: center;
  background-color: #C91F17; /* Main Color */
  padding: 80px 0;
  color: #FFF5E1;
}

.page-about__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* General image responsiveness */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-container {
    padding: 30px 16px;
    gap: 30px;
  }

  .page-about__hero-content,
  .page-about__hero-image {
    flex: 1 1 100%;
  }

  .page-about__hero-content {
    order: 2;
    text-align: center;
  }

  .page-about__hero-image {
    order: 1;
  }

  .page-about__main-title {
    font-size: 2.5rem;
  }

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

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

  .page-about__icon-box-media {
    width: 160px;
    height: 160px;
  }

  .page-about__card {
    flex: 1 1 100%;
  }

  .page-about__grid-two-cols {
    flex-direction: column;
  }

  .page-about__content-column,
  .page-about__image-column {
    flex: 1 1 100%;
  }

  .page-about__reverse-on-mobile .page-about__content-column {
    order: 2;
  }

  .page-about__reverse-on-mobile .page-about__image-column {
    order: 1;
  }

  .page-about__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-about__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-about__faq-answer {
    padding: 12px 20px 18px;
  }

  .page-about__btn-primary, .page-about__btn-secondary {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO Section */
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-about__hero-container {
    padding: 20px 15px;
    gap: 25px;
  }

  .page-about__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-about__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-about__cta-buttons {
    flex-direction: column !important; /* Multiple buttons stack vertically */
    gap: 10px;
    padding: 0 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Section Titles */
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding: 0 15px 10px;
  }

  /* General container padding */
  .page-about__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mission & Vision / Grid Two Cols */
  .page-about__grid-two-cols {
    flex-direction: column;
    gap: 25px;
  }

  .page-about__card {
    padding: 25px;
    flex: 1 1 100%;
  }

  /* Values Section (Module 1 equivalent for round images) */
  .page-about__values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-about__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }

  .page-about__value-title {
    font-size: 1.3rem;
  }

  /* Why Choose Section */
  .page-about__feature-list li {
    font-size: 1rem;
    padding-left: 25px;
    background-size: 18px;
  }

  /* History Section */
  .page-about__content-text-block {
    font-size: 1rem;
    padding: 0 15px;
  }

  /* Commitment Section */
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* FAQ Section */
  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-about__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 15px;
  }

  /* Bottom CTA */
  .page-about__cta-bottom-section {
    padding: 50px 0;
  }

  .page-about__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  /* Universal Image Responsiveness for content area */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Ensure no overflow on content elements */
  .page-about__mission-vision-section,
  .page-about__why-choose-section,
  .page-about__history-section,
  .page-about__commitment-section,
  .page-about__faq-section,
  .page-about__cta-bottom-section,
  .page-about__values-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
}