.page-about {
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Overall page background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-about__hero-content {
  position: relative; /* Ensure content is above image if needed, but not overlaying */
  text-align: center;
  max-width: 900px;
  margin-top: 40px; /* Space between image and content */
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-about__cta-group--center {
  justify-content: center;
}

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

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

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-about__container--reversed {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}

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

.page-about__text-block--light {
  color: #F2FFF6;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.page-about__image-wrapper--center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-about__content-block {
  flex: 1;
  min-width: 300px;
}

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

.page-about__value-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-description {
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.5;
}

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

.page-about__product-list li {
  background-color: #0A4B2C; /* Deep Green */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #2AD16F;
  border-radius: 5px;
  color: #F2FFF6;
  font-size: 1.1em;
}

.page-about__product-list li a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-about__product-list li a:hover {
  color: #57E38D;
}

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

.page-about__security-list li {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-about__security-list li::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-about__dark-bg {
  background-color: #08160F; /* Background color */
  color: #F2FFF6;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__container--reversed {
    flex-direction: column;
  }
  .page-about__hero-content {
    margin-top: 20px;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-about__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__hero-content {
    margin-top: 10px;
  }
  .page-about__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__text-block {
    font-size: 1em;
  }
  .page-about__content-image,
  .page-about__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__image-wrapper,
  .page-about__container,
  .page-about__section,
  .page-about__hero-section,
  .page-about__values-grid,
  .page-about__support-channels {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .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-group {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
  .page-about__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__value-card {
    padding: 20px;
  }
}