.page-about {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  background: linear-gradient(135deg, #8B0000, #FFD700); /* Blend of auxiliary and primary for hero */
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle background image */
}

.page-about__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Primary brand color */
  color: #8B0000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-about__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Primary brand color for text */
  border: 2px solid #FFD700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000; /* Dark text on hover */
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-about__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #f0f0f0; /* Light text for readability on dark backgrounds */
  text-align: justify;
}

.page-about__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-about__intro-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-about__why-choose-section {
  padding: 80px 0;
  background-color: #8B0000; /* Auxiliary brand color as background */
  color: #ffffff;
}

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

.page-about__feature-card {
  background-color: rgba(0, 0, 0, 0.4); /* Dark translucent background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-about__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Primary brand color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__feature-list {
  list-style: disc inside;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-about__feature-list li {
  margin-bottom: 8px;
}

.page-about__feature-list li a {
  color: #FFD700;
  text-decoration: none;
}

.page-about__feature-list li a:hover {
  text-decoration: underline;
}

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

.page-about__faq-section {
  padding: 80px 0;
  background-color: #2c2c2c; /* Slightly brighter dark background for FAQ */
}

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

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light translucent background for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

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

.page-about__faq-title {
  font-size: 1.3em;
  color: #FFD700; /* Primary brand color for FAQ questions */
  margin: 0;
}

.page-about__faq-toggle {
  font-size: 1.8em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an 'x' or '-' */
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

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

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

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

.page-about__cta-section {
  padding: 80px 0;
  background-color: #8B0000; /* Auxiliary brand color */
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-about__cta-section .page-about__btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  font-size: 1.5em;
  padding: 20px 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-description {
    font-size: 1.3em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__text-block {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-section {
    padding: 80px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    font-size: 1em;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__intro-section,
  .page-about__why-choose-section,
  .page-about__commitment-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__container,
  .page-about__hero-section,
  .page-about__intro-section,
  .page-about__why-choose-section,
  .page-about__commitment-section,
  .page-about__faq-section,
  .page-about__cta-section,
  .page-about__feature-card,
  .page-about__faq-item,
  .page-about__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-about__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-title {
    font-size: 1.1em;
  }
  .page-about__faq-answer {
    padding: 10px 20px;
  }
  .page-about__cta-section .page-about__btn-primary {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

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