.page-about {
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #017439; /* Brand main color for hero section background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: #ffffff;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFF00; /* Use custom color for title for contrast */
}

.page-about__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-about__heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFF00; /* Using custom color for main headings */
}

.page-about__sub-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #017439; /* Brand main color for subheadings on light background */
}

.page-about__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light grey for paragraphs on dark background */
}

.page-about__paragraph strong {
  color: #FFFF00;
}

.page-about__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-about__list-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-about__grid-layout--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-about__grid-layout--reverse .page-about__content-block {
  order: 2;
}

.page-about__grid-layout--reverse .page-about__image-block {
  order: 1;
}

.page-about__general-introduction {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark body */
}

.page-about__general-introduction .page-about__paragraph {
  color: #ffffff;
}

.page-about__history-mission {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333;
}

.page-about__history-mission .page-about__heading,
.page-about__history-mission .page-about__sub-heading {
  color: #017439;
}

.page-about__history-mission .page-about__paragraph,
.page-about__history-mission .page-about__list-item {
  color: #333333;
}

.page-about__history-mission .page-about__paragraph strong {
  color: #017439;
}

.page-about__why-choose-us {
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff;
}

.page-about__why-choose-us .page-about__heading {
  color: #FFFF00; /* Yellow heading on dark background */
}

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

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card on dark background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFF00; /* Yellow for feature titles */
}

.page-about__feature-description {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-about__btn-primary {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-about__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #017439;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #017439;
  cursor: pointer;
}

.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005f2f;
  transform: translateY(-2px);
}

.page-about__btn-register {
  background-color: #C30808;
  color: #FFFF00;
}

.page-about__btn-register:hover {
  background-color: #a00606;
}

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

.page-about__our-team {
  background-color: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.page-about__our-team .page-about__heading {
  color: #FFFF00;
}

.page-about__our-team .page-about__paragraph {
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-about__team-image {
  max-width: 1000px;
  margin: 30px auto;
  display: block;
}

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

.page-about__commitment .page-about__heading {
  color: #017439;
}

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

.page-about__commitment-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__commitment-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #017439;
}

.page-about__commitment-description {
  font-size: 1rem;
  color: #555555;
}

.page-about__security-image {
  max-width: 1000px;
  margin: 30px auto;
  display: block;
}

.page-about__faq-section {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-about__faq-section .page-about__heading {
  color: #FFFF00;
}

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

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

.page-about__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFF00;
  list-style: none;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #e0e0e0;
}

.page-about__faq-answer p {
  margin-bottom: 10px;
}

.page-about__faq-answer a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-about__cta-bottom {
  background-color: #017439; /* Brand main color for bottom CTA */
  text-align: center;
  padding: 80px 20px;
}

.page-about__cta-bottom .page-about__heading {
  color: #FFFF00;
}

.page-about__cta-bottom .page-about__paragraph {
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-about__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
  background-color: #C30808;
  color: #FFFF00;
}

.page-about__btn-large:hover {
  background-color: #a00606;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__grid-layout--reverse .page-about__content-block {
    order: unset;
  }
  .page-about__grid-layout--reverse .page-about__image-block {
    order: unset;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 10px 15px 40px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-about__description {
    font-size: 1rem;
  }
  .page-about__heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-about__sub-heading {
    font-size: 1.6rem;
  }
  .page-about__paragraph,
  .page-about__list-item,
  .page-about__feature-description,
  .page-about__commitment-description {
    font-size: 0.95rem;
  }
  .page-about__feature-title {
    font-size: 1.3rem;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-large,
  .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;
    text-align: center;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__container,
  .page-about__section,
  .page-about__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px;
  }
  .page-about__cta-bottom {
    padding: 60px 15px;
  }
  .page-about__video-section { /* Ensure video section has correct mobile padding */
    padding-top: 10px !important;
  }
}