.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f9fa; /* A light background for general content areas */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  background-color: #26A9E0; /* Primary brand color as background */
  color: #ffffff; /* White text for contrast */
  overflow: hidden;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

.page-about__hero-section .page-about__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-about__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-about__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-about__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login/Action color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

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

/* General Section Styling */
.page-about__section {
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for content sections */
  border-bottom: 1px solid #eee;
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-about__paragraph {
  font-size: 1.1em;
  color: #333333;
  text-align: justify;
  margin-bottom: 20px;
}

.page-about__paragraph a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

/* Features Grid (Mission, History, Values) */
.page-about__features-grid,
.page-about__benefits-grid,
.page-about__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-card,
.page-about__benefit-card,
.page-about__content-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-about__feature-title,
.page-about__benefit-title,
.page-about__content-subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-description,
.page-about__benefit-description,
.page-about__content-text {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-about__benefit-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Ensure min-size for images */
  min-height: 200px; /* Ensure min-size for images */
}

/* Contact List */
.page-about__contact-list {
  list-style: disc;
  margin-left: 20px;
  color: #555555;
  margin-top: 15px;
}

.page-about__contact-list li {
  margin-bottom: 10px;
}

.page-about__contact-list li a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

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

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

.page-about__faq-item {
  background-color: #ffffff;
  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: 20px;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-about__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #26A9E0;
}

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

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg); /* Plus to X */
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-about__main-title {
    font-size: 2em;
  }

  .page-about__intro-text {
    font-size: 1em;
  }

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

  .page-about__features-grid,
  .page-about__benefits-grid,
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }

  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }

  /* Image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  /* Video responsiveness (if any) - Not used on this page but included for safety */
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}