.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for overall page on dark body background */
}

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

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-about__hero-content {
  max-width: 900px;
  margin-top: 20px;
  position: relative; /* Ensure content is above image if any overlap */
  z-index: 1;
}

.page-about__main-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-about__cta-button--centered {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

.page-about__secondary-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background: transparent;
  color: #2AD16F; /* Highlight color */
  border: 2px solid #2AD16F;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-about__secondary-button:hover {
  background: #2AD16F;
  color: #08160F;
}

.page-about__secondary-button--centered {
  display: block;
  margin: 30px auto;
  max-width: 350px;
}

.page-about__content-section {
  padding: 60px 20px;
  text-align: center;
}

.page-about__dark-bg {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
}

.page-about__light-bg {
  background-color: #11271B; /* Card B G, used as light background here for contrast */
  color: #F2FFF6; /* Text Main */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
}

.page-about__text-main {
  color: #F2FFF6; /* Text Main */
}

.page-about__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-about__image--full-width {
  max-width: 100%;
}

.page-about__vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-about__vision-card, .page-about__mission-card {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-about__card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-about__card-text, .page-about__mission-list {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__mission-list {
  list-style: none;
  padding-left: 0;
}

.page-about__mission-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-about__mission-list li::before {
  content: '✓';
  color: #2AD16F; /* Green accent */
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-about__value-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-about__value-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-about__value-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-about__feature-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-about__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-about__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__why-choose-list, .page-about__responsibility-list, .page-about__contact-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__why-choose-list li, .page-about__responsibility-list li, .page-about__contact-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.page-about__why-choose-list li strong, .page-about__responsibility-list li strong, .page-about__contact-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-about__why-choose-list li::before, .page-about__responsibility-list li::before {
  content: '★';
  color: #F2C14E; /* Gold */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.page-about__contact-list li::before {
  content: '✉'; /* Example icon */
  color: #2AD16F; /* Green accent */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

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

.page-about__faq-item {
  background-color: #11271B; /* Card B G */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #11271B; /* Card B G */
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F; /* Green accent */
}

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

.page-about__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.5rem;
  }
  .page-about__section-title {
    font-size: 2rem;
  }
  .page-about__vision-card, .page-about__mission-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-section {
    padding: 10px 15px 40px;
  }
  .page-about__hero-image {
    margin-bottom: 20px;
  }
  .page-about__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-about__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__cta-button--centered {
    margin: 20px auto;
  }
  .page-about__secondary-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__secondary-button--centered {
    margin: 20px auto;
  }
  .page-about__content-section {
    padding: 40px 15px;
  }
  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-about__paragraph {
    font-size: 0.95rem;
  }
  .page-about__image {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-about__vision-mission, .page-about__values-grid, .page-about__security-features {
    gap: 20px;
    margin-top: 30px;
  }
  .page-about__vision-card, .page-about__mission-card, .page-about__value-item, .page-about__feature-item {
    padding: 25px;
  }
  .page-about__card-title, .page-about__value-title, .page-about__feature-title {
    font-size: 1.3rem;
  }
  .page-about__card-text, .page-about__value-description, .page-about__feature-description {
    font-size: 0.9rem;
  }
  .page-about__why-choose-list, .page-about__responsibility-list, .page-about__contact-list {
    margin: 30px auto;
    font-size: 1rem;
  }
  .page-about__why-choose-list li, .page-about__responsibility-list li, .page-about__contact-list li {
    padding-left: 30px;
  }
  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-about__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }
}

/* Ensure all images and containers are responsive */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-about__hero-image-wrapper,
.page-about__container,
.page-about__content-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__container,
  .page-about__content-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}