.page-about {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Inherited from body, but explicitly set for clarity */
}

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

.page-about__section {
  padding: 60px 0;
  position: relative;
}

.page-about__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #CC0000; /* Main color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for readability */
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-offset, 120px) + 60px) 20px 60px;
  background: linear-gradient(135deg, #CC0000 0%, #800000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for main title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #f8f8f8;
  margin-bottom: 30px;
}

.page-about__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.1em;
  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; /* Auxiliary color for primary button */
  color: #CC0000;
  border: 2px solid #FFD700;
}

.page-about__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #CC0000;
  transform: translateY(-2px);
}

.page-about__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-about__image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-about__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-about__list--nested {
  list-style: circle inside;
  margin-top: 10px;
  margin-left: 20px;
}

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

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 100%; /* Ensure full width for image */
  max-width: 250px; /* Limit icon size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__value-description {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-about__feature-item {
  background-color: rgba(255, 255, 255, 0.07); /* Slightly transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__feature-description {
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-about__content-flex {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

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

.page-about__video-wrapper {
  flex: 1;
  position: relative;
  padding-bottom: 28.125%; /* 16:9 Aspect Ratio (450/800 = 0.5625 = 56.25% of width) */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.page-about__video-caption {
  color: #f0f0f0;
  text-align: center;
  margin-top: 15px;
  font-size: 0.95em;
}

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

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

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  background-color: #CC0000; /* Main color for question background */
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #a30000;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-question {
  background-color: #a30000;
}

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

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

.page-about__faq-answer p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-about__cta-bottom {
  background-color: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

.page-about__text-center {
  text-align: center;
}

.page-about__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__image-text-grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-flex {
    flex-direction: column;
  }
  .page-about__video-wrapper {
    padding-bottom: 56.25%; /* Standard 16:9 for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: calc(var(--header-offset, 120px) + 40px) 15px 40px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__paragraph,
  .page-about__list-item,
  .page-about__value-description,
  .page-about__feature-description,
  .page-about__faq-answer p {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__values-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__image-wrapper,
  .page-about__video-wrapper,
  .page-about__faq-item,
  .page-about__value-card,
  .page-about__feature-item,
  .page-about__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-about__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure 16:9 aspect ratio on mobile */
    overflow: hidden !important;
  }
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-about__faq-answer {
    padding: 15px 20px;
  }
}

/* Ensure images within content areas are not smaller than 200px */
.page-about__image-wrapper img,
.page-about__value-icon,
.page-about__hero-image {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures image covers the area without distortion */
}

/* Explicitly set min-height for video wrapper to avoid collapse on some browsers before video loads */
.page-about__video-wrapper {
  min-height: 200px; /* Minimum height for video wrapper */
}

/* Body background is dark, so text should be light */
.page-about,
.page-about p,
.page-about li,
.page-about__hero-description,
.page-about__value-description,
.page-about__feature-description,
.page-about__video-caption,
.page-about__faq-answer p {
  color: #f0f0f0;
}

.page-about__hero-title,
.page-about__section-title,
.page-about__sub-title,
.page-about__value-title,
.page-about__feature-title,
.page-about__faq-question {
  color: #FFD700;
}

/* Override for specific elements where brand color text on light background is needed, ensuring contrast */
.page-about__btn-primary {
  color: #CC0000; /* Dark text on light button */
}

.page-about__btn-secondary {
  color: #FFD700; /* Light text on transparent/dark background */
}

.page-about__faq-question {
  background-color: #CC0000; /* Dark background for FAQ question */
  color: #FFD700; /* Light text for FAQ question */
}

.page-about__faq-question:hover {
  background-color: #a30000;
}

.page-about__faq-item.active .page-about__faq-question {
  background-color: #a30000;
}