.page-about__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjusted height for desktop */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  box-sizing: border-box;
}

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-about__main-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

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

.page-about__section-title {
  font-size: 2.8rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  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: #8B0000;
  border-radius: 2px;
}

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

.page-about__grid-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-about__grid-item--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 200px;
}

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

.page-about__sub-title {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__intro-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-about__why-choose-us-section {
  padding: 80px 0;
}

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

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

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 215, 0, 0.1);
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
  min-width: 200px;
  min-height: 200px;
}

.page-about__card-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

.page-about__card-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-about__value-item {
  margin-bottom: 40px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
}

.page-about__value-item p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-about__team-section {
  padding: 80px 0;
}

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

.page-about__team-member {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-about__team-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__team-member p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

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

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

.page-about__commitment-item {
  background-color: rgba(139, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #8B0000;
}

.page-about__commitment-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.page-about__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 215, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-about__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-about__faq-answer p {
  margin-bottom: 0;
}

.page-about__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-about__contact-cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__contact-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 3rem;
  }
  .page-about__section-title {
    font-size: 2.2rem;
  }
  .page-about__sub-title {
    font-size: 1.8rem;
  }
  .page-about__hero-section {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }
  .page-about__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-about__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-about__container {
    padding: 30px 15px;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .page-about__sub-title {
    font-size: 1.5rem;
  }
  .page-about__grid-item {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .page-about__grid-item--reverse {
    flex-direction: column;
  }
  .page-about__intro-section p,
  .page-about__feature-card p,
  .page-about__value-item p,
  .page-about__team-member p,
  .page-about__commitment-item p,
  .page-about__faq-answer p,
  .page-about__contact-description {
    font-size: 0.95rem;
  }
  .page-about__features-grid,
  .page-about__team-grid,
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__feature-icon,
  .page-about__team-image,
  .page-about__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-about__intro-section,
  .page-about__why-choose-us-section,
  .page-about__core-values-section,
  .page-about__team-section,
  .page-about__commitment-section,
  .page-about__faq-section,
  .page-about__contact-cta-section {
    padding: 40px 0;
  }
  .page-about__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }
  .page-about__faq-answer {
    padding: 15px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px;
  }
  /* Ensure all containers and images are constrained */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__grid-item,
  .page-about__image-wrapper,
  .page-about__feature-card,
  .page-about__team-member,
  .page-about__commitment-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Specific padding for main container to avoid double padding */
  .page-about__container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Global text color for dark body background */
.page-about {
  color: #ffffff; /* Must use light text for dark body background */
}

/* Specific text colors for elements on varying backgrounds */
.page-about__dark-bg {
  color: #ffffff; /* Deep dark background, so white text */
}

/* Ensure images are not filtered */
.page-about img {
  filter: none; /* Absolutely no CSS filters to change image colors */
}