.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color, #333333);
  background-color: var(--bg-color, #ffffff);
}

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

.page-about__section {
  padding: 80px 0;
  text-align: center;
}

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

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

.page-about__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: inherit;
  font-weight: bold;
}

.page-about__hero-section {
  position: relative;
  padding: 120px 0 60px 0;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: #ffffff;
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

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

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

.page-about__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  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: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

.page-about__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.page-about__content-grid--reverse {
  grid-template-areas: 'image text';
}

.page-about__content-grid--reverse .page-about__text-block {
  grid-area: text;
}

.page-about__content-grid--reverse .page-about__image-block {
  grid-area: image;
}

.page-about__text-block p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-about__text-block h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: inherit;
}

.page-about__image-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__value-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #EA7C07;
  border-radius: 5px;
  text-align: left;
}

.page-about__value-list li strong {
  color: #EA7C07;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

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

.page-about__video-section {
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__video-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-about__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
}

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

.page-about__video-description {
  margin-top: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-about__reason-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 40px;
}

.page-about__reason-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #EA7C07;
}

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

.page-about__reason-list p {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-about__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-about__faq-item {
  background-color: #f9f9f9;
  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 25px;
  cursor: pointer;
  background-color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
}

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

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

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important;
  padding: 20px 25px;
}

.page-about__faq-item.active .page-about__faq-toggle {
  content: '−';
}

.page-about__section-intro {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: inherit;
}

.page-about__hero-content strong {
  color: #EA7C07;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__hero-title {
    font-size: 3em;
  }

  .page-about__content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-about__content-grid--reverse {
    grid-template-areas: unset;
  }

  .page-about__text-block, .page-about__image-block {
    grid-area: unset;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__hero-section {
    padding: var(--header-offset, 120px) 0 40px 0;
    min-height: 500px;
  }

  .page-about__hero-content {
    padding: 20px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-about__hero-cta-buttons,
  .page-about__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__text-block p {
    font-size: 1em;
  }

  .page-about__text-block h3 {
    font-size: 1.5em;
  }

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

  .page-about__team-gallery {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__reason-list {
    grid-template-columns: 1fr;
  }

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

  .page-about__faq-answer {
    padding: 0 20px;
  }

  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px 20px;
  }

  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure content area images are not too small */
.page-about__content-area img,
.page-about__text-block img,
.page-about__image-block img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific content images, if any, should not be tiny */
.page-about__image {
  width: 100%; /* Will be constrained by parent, but ensures it's not tiny */
  height: auto;
  object-fit: cover;
}

/* CSS for color contrast on elements */
.page-about__dark-bg {
  color: #ffffff; 
  background: #26A9E0; 
}

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

/* Ensure specific color for links in dark sections */
.page-about__dark-section a {
  color: #EA7C07; /* Brighter color for visibility */
}

.page-about__dark-section a:hover {
  color: #f0f0f0;
}