.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bb0 100%); /* Brand colors */
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #FFFFFF;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-about__cta-buttons--center {
  margin-top: 40px;
}

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

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

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

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

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

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

.page-about__section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-about__dark-bg {
  background-color: #1a1a1a;
}

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

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

.page-about__heading {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0;
}

.page-about__heading--white {
  color: #FFFFFF;
}

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

.page-about__paragraph--white {
  color: #f0f0f0;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
}

.page-about__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-about__introduction .page-about__paragraph {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-about__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__card--transparent {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about__card--transparent:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-about__card--light {
  background-color: #1a1a1a;
  border: 1px solid #333333;
}

.page-about__card--light:hover {
  background-color: #262626;
}

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

.page-about__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-about__timeline {
  list-style: none;
  padding: 0;
  position: relative;
  margin-top: 50px;
}

.page-about__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #26A9E0;
  transform: translateX(-50%);
}

.page-about__timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  max-width: 45%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__timeline-item:nth-child(odd) {
  left: 0;
}

.page-about__timeline-item:nth-child(even) {
  left: 55%;
}

.page-about__timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: #26A9E0;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  z-index: 1;
}

.page-about__timeline-item:nth-child(odd)::before {
  right: -55px; /* Adjusted for centered line */
  transform: translateX(50%);
}

.page-about__timeline-item:nth-child(even)::before {
  left: -55px; /* Adjusted for centered line */
  transform: translateX(-50%);
}

.page-about__timeline-year {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-about__timeline-description {
  color: #f0f0f0;
}

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

.page-about__feature-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #333333;
  color: #FFFFFF;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  background-color: #262626;
}

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

.page-about__feature-text {
  color: #f0f0f0;
}

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

.page-about__commitment-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.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: #FFFFFF;
  background-color: #262626;
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-question {
  background-color: #2e2e2e;
  border-bottom: 1px solid #333333;
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-question::marker {
  display: none;
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-about__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.7;
  background-color: #1a1a1a;
}

.page-about__cta-bottom {
  padding: 100px 0;
  background: linear-gradient(45deg, #1a1a1a 0%, #26A9E0 100%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__timeline::before {
    left: 20px;
  }
  .page-about__timeline-item {
    max-width: 100%;
    left: 0 !important;
    padding-left: 60px;
  }
  .page-about__timeline-item::before {
    left: 20px !important;
    transform: translateX(-50%) !important;
  }
  .page-about__timeline-item:nth-child(even)::before {
    left: 20px !important;
  }
}

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

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

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

  .page-about__hero-description {
    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: 0.9em;
  }

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

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

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

  .page-about__grid,
  .page-about__feature-grid,
  .page-about__commitment-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__card,
  .page-about__feature-card,
  .page-about__commitment-item {
    padding: 25px;
  }

  .page-about__card-title,
  .page-about__feature-title,
  .page-about__commitment-title {
    font-size: 1.5em;
  }

  .page-about__timeline-item {
    padding-left: 50px;
    margin-bottom: 40px;
  }

  .page-about__timeline-item::before {
    left: 15px !important;
    top: 25px;
    width: 15px;
    height: 15px;
  }

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

  .page-about__faq-answer {
    padding: 10px 20px 15px;
  }
  
  /* Mobile specific image handling */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__video-section {
    padding-top: var(--header-offset, 120px) !important; /* With !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;
  }

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

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__heading {
    font-size: 1.5em;
  }
  .page-about__card-title,
  .page-about__feature-title,
  .page-about__commitment-title {
    font-size: 1.3em;
  }
  .page-about__timeline-year {
    font-size: 1.4em;
  }
  .page-about__cta-bottom {
    padding: 80px 0;
  }
}