.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#000000), so text should be light */
  background-color: transparent; /* Rely on body background from shared.css */
}

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

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

.page-about__dark-bg {
  background-color: #26A9E0; /* Using brand primary color for dark sections */
  color: #ffffff;
}

.page-about__section-title,
.page-about__subsection-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff; /* Default for dark sections, will be overridden for light sections */
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
}

.page-about__subsection-title {
  font-size: clamp(22px, 3.5vw, 32px);
  margin-top: 40px;
  color: #26A9E0; /* For light background sections */
}

.page-about__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Light text for dark backgrounds */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability, not changing color */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image, but not overlap text on image */
  background: linear-gradient(to top, rgba(38, 169, 224, 0.9), rgba(38, 169, 224, 0.7));
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-about__main-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

.page-about__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

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

.page-about__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7fb0;
  border-color: #1a7fb0;
}

/* Introduction Section */
.page-about__introduction .page-about__text-block {
  color: #333333; /* Dark text for light background */
}

.page-about__introduction .page-about__section-title {
  color: #26A9E0; /* Brand color for titles on light background */
}

.page-about__introduction .page-about__subsection-title {
  color: #26A9E0;
}

.page-about__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 800px;
}

/* Commitment Section */
.page-about__commitment .page-about__section-title {
  color: #FFFFFF;
}

.page-about__commitment .page-about__text-block {
  color: #f0f0f0;
}

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

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  color: #ffffff;
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-about__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Products Section */
.page-about__products {
  background-color: #ffffff;
}

.page-about__products .page-about__section-title {
  color: #26A9E0;
}

.page-about__products .page-about__text-block {
  color: #333333;
}

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

.page-about__product-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-about__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-about__product-title {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 10px 10px;
  color: #26A9E0;
}

.page-about__product-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-about__product-title a:hover {
  text-decoration: underline;
}

.page-about__product-description {
  font-size: 15px;
  color: #555555;
  padding: 0 15px 20px;
}

/* Why Choose Section */
.page-about__why-choose .page-about__section-title {
  color: #FFFFFF;
}

.page-about__why-choose .page-about__text-block {
  color: #f0f0f0;
}

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

.page-about__benefit-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  color: #ffffff;
}

.page-about__benefit-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-about__benefit-description {
  font-size: 16px;
  color: #f0f0f0;
}

.page-about__cta-center {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-about__faq-section {
  background-color: #ffffff;
}

.page-about__faq-section .page-about__section-title {
  color: #26A9E0;
}

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

.page-about__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #e6f7ff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

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

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

.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  color: #26A9E0;
}

.page-about__faq-answer {
  padding: 15px 25px 25px;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.page-about__faq-answer p {
  margin-bottom: 10px;
  color: #555555;
}

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

/* General image styling for content areas */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 0;
  }

  .page-about__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-about__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    padding-bottom: 40px;
  }

  .page-about__hero-content {
    margin-top: -100px; /* Adjust for smaller screens */
    padding: 15px;
  }

  .page-about__main-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .page-about__hero-description {
    font-size: 16px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__features-grid,
  .page-about__product-grid,
  .page-about__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-card,
  .page-about__product-card,
  .page-about__benefit-card {
    padding: 20px;
  }

  .page-about__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-about__product-image {
    height: 180px;
  }

  .page-about__cta-center {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

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

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section, .page-about__card, .page-about__container, .page-about__cta-buttons, .page-about__cta-center, .page-about__features-grid, .page-about__product-grid, .page-about__benefits-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-about__hero-image-wrapper {
    max-height: 400px; /* Adjust hero image height for mobile */
  }
}

/* Ensure content area images are not too small */
.page-about__introduction img, 
.page-about__commitment img, 
.page-about__products img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-about__introduction img, 
  .page-about__commitment img, 
  .page-about__products img {
    min-width: unset !important; /* Allow mobile to shrink, but still prevent tiny icons */
    min-height: unset !important;
  }
}

/* Specific adjustment for img within feature card to respect min-size */
.page-about__feature-icon {
  min-
  min-
}

@media (max-width: 768px) {
  .page-about__feature-icon {
    min-width: 80px !important;
    min-height: 80px !important;
  }
}