.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #121212, so text is light */
  background-color: #121212;
}

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

.page-about__section-title {
  font-size: 2.8em;
  color: #E63946;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 40px;
}

.page-about__sub-title {
  font-size: 2em;
  color: #E63946;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-about__btn-primary {
  display: inline-block;
  background-color: #E63946;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-about__btn-primary:hover {
  background-color: #ff5c6a;
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #E63946;
  border: 2px solid #E63946;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-about__btn-secondary:hover {
  background-color: #E63946;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-about__btn-link {
  color: #E63946;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__btn-link:hover {
  color: #ff5c6a;
  text-decoration: underline;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  background-color: #0A2647;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Desktop and mobile offset */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
}

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

.page-about__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(50%); /* Allowed for decorative background images */
}

/* Introduction Section */
.page-about__introduction-section {
  background-color: #0A2647; /* Dark background for this section */
  color: #ffffff;
  padding: 80px 0;
}

.page-about__introduction-section .page-about__section-title {
  color: #E63946;
}

.page-about__introduction-section .page-about__text-block, 
.page-about__introduction-section p {
  color: #f0f0f0;
}

.page-about__introduction-section h3 {
  color: #ffffff;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-about__image-block img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page-about__values-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-about__values-list li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* History Section */
.page-about__history-section {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__history-section .page-about__section-title {
  color: #E63946;
}

.page-about__history-section .page-about__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-about__timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-about__timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #0A2647;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.page-about__timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.page-about__timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #E63946;
  border: 4px solid #0A2647;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

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

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

.page-about__timeline-item:nth-child(even)::after {
  left: -17px;
}

.page-about__timeline-year {
  color: #E63946;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-about__timeline-item p {
  color: #f0f0f0;
}

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

.page-about__achievements-list li {
  background-color: rgba(10, 38, 71, 0.8);
  padding: 20px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.1em;
  border-left: 5px solid #E63946;
}

/* Why Choose Section */
.page-about__why-choose-section {
  background-color: #0A2647; /* Dark background for this section */
  color: #ffffff;
  padding: 80px 0;
}

.page-about__why-choose-section .page-about__section-title {
  color: #E63946;
}

.page-about__why-choose-section .page-about__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__feature-title {
  color: #ffffff;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-about__feature-card p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Commitment Section */
.page-about__commitment-section {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__commitment-section .page-about__section-title {
  color: #E63946;
}

.page-about__commitment-section h3 {
  color: #ffffff;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__commitment-section p {
  color: #f0f0f0;
}

/* Team Section */
.page-about__team-section {
  background-color: #0A2647; /* Dark background for this section */
  color: #ffffff;
  padding: 80px 0;
}

.page-about__team-section .page-about__section-title {
  color: #E63946;
}

.page-about__team-section .page-about__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.page-about__team-member {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__team-avatar {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #E63946;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__member-name {
  color: #ffffff;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-about__member-role {
  color: #f0f0f0;
  font-size: 1em;
}

/* Contact Section */
.page-about__contact-section {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-about__contact-section .page-about__section-title {
  color: #E63946;
}

.page-about__contact-section .page-about__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.page-about__contact-item {
  background-color: rgba(10, 38, 71, 0.8);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__contact-title {
  color: #ffffff;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-about__contact-item p {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-about__faq-section {
  background-color: #0A2647; /* Dark background for this section */
  color: #ffffff;
  padding: 80px 0;
}

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

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

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

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

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

.page-about__faq-answer p {
  color: #f0f0f0;
  margin-bottom: 15px;
}

/* CTA Section */
.page-about__cta-section {
  background-color: #E63946;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

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

.page-about__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

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

/* Image and Video Responsive & Style Constraints */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    min-height: 450px;
  }

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

  .page-about__hero-description {
    font-size: 1em;
  }

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

  .page-about__sub-title {
    font-size: 1.5em;
  }

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

  .page-about__timeline::after {
    left: 18px;
  }

  .page-about__timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
    text-align: left !important;
  }

  .page-about__timeline-item::after {
    left: 11px;
    margin-left: 0;
  }

  .page-about__timeline-item:nth-child(odd)::after {
    left: 11px;
  }

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

  .page-about__features-grid,
  .page-about__team-grid,
  .page-about__contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-card,
  .page-about__team-member,
  .page-about__contact-item {
    padding: 25px;
  }

  .page-about__feature-icon {
    max-width: 120px;
  }

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

  .page-about__cta-description {
    font-size: 1.1em;
  }

  .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__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
  }

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