.page-about__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
}

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

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-about__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-about__description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.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: 600;
  transition: all 0.3s ease;
  font-size: 1.1em;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

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

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

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

.page-about__btn-secondary:hover {
  background: #e0e0e0;
  color: #1e87c2;
}

.page-about__intro-section,
.page-about__ecosystem-section,
.page-about__video-section,
.page-about__why-choose-us-section,
.page-about__faq-section {
  padding: 80px 0;
  color: #333333;
}

.page-about__values-section,
.page-about__commitment-section {
  padding: 80px 0;
  color: #ffffff;
  background: #26A9E0;
}

.page-about__light-bg {
  background: #FFFFFF;
  color: #333333;
}

.page-about__dark-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-about__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: inherit;
}

.page-about__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

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

.page-about__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-about__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-about__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-about__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: 600;
}

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__value-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background 0.3s ease;
}

.page-about__value-item:hover {
  background: rgba(255, 255, 255, 0.25);
}

.page-about__value-heading {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.page-about__value-item p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-about__media-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-about__media-text {
  flex: 1;
}

.page-about__media-image {
  flex: 1;
  text-align: center;
}

.page-about__sub-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #26A9E0;
  font-weight: 700;
}

.page-about__feature-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
}

.page-about__feature-list li strong {
  color: #26A9E0;
}

.page-about__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.page-about__commitment-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background 0.3s ease;
}

.page-about__commitment-item:hover {
  background: rgba(255, 255, 255, 0.25);
}

.page-about__commitment-heading {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.page-about__commitment-item p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-about__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.page-about__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
}

.page-about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

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

.page-about__why-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about__why-heading {
  font-size: 1.7em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: 600;
}

.page-about__cta-bottom {
  background: linear-gradient(135deg, #26A9E0, #4a90e2);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-about__cta-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-about__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: #f0f0f0;
}

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

.page-about__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #f9f9f9;
  color: #333333;
  font-size: 1.2em;
  font-weight: 600;
  transition: background 0.3s ease;
}

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

.page-about__faq-question h3 {
  margin: 0;
  font-size: 1em; /* Adjust to fit parent font size */
  color: #333333;
}

.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); /* Change + to X */
  content: '−'; /* Visually change to minus sign */
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  font-size: 1.05em;
  line-height: 1.7;
}

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

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.8em;
  }
  .page-about__description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__sub-title {
    font-size: 1.8em;
  }
  .page-about__media-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__media-text, .page-about__media-image {
    flex: none;
    width: 100%;
  }
  .page-about__cta-heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-about__main-title {
    font-size: 2em;
  }
  .page-about__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary, .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__intro-section, .page-about__values-section, .page-about__ecosystem-section, .page-about__commitment-section, .page-about__video-section, .page-about__why-choose-us-section, .page-about__faq-section {
    padding: 60px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-about__text-block {
    font-size: 0.95em;
  }
  .page-about__card-grid, .page-about__value-list, .page-about__commitment-grid, .page-about__why-grid {
    grid-template-columns: 1fr;
  }
  .page-about__card, .page-about__value-item, .page-about__commitment-item, .page-about__why-item {
    padding: 25px;
  }
  .page-about__card-title, .page-about__value-heading, .page-about__commitment-heading, .page-about__why-heading {
    font-size: 1.4em;
  }
  .page-about__sub-title {
    font-size: 1.6em;
  }
  .page-about__responsive-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }
  .page-about__media-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__cta-bottom {
    padding: 40px 20px;
    margin-top: 60px;
  }
  .page-about__cta-heading {
    font-size: 1.8em;
  }
  .page-about__cta-bottom p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-about__cta-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-about__faq-question h3 {
    font-size: 1em;
  }
  .page-about__faq-answer {
    padding: 0 20px;
    font-size: 0.95em;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 10px 20px;
  }
  /* General content area responsive padding */
  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__text-block, .page-about__feature-list, .page-about__faq-list {
    padding-left: 0;
    padding-right: 0;
  }
}