.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F4F7FB; /* Default background color */
}

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

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  background: linear-gradient(180deg, #F4F7FB 0%, #E0E7F5 100%);
  border-bottom: 1px solid #D6E2FF;
}

.page-about__hero-image-wrapper {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
}

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

.page-about__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size */
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-about__description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

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

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-about__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__btn-secondary:hover {
  background: #F0F5FF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-about__sub-title {
  font-size: 1.8em;
  color: #2F6BFF;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__text-block {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-about__highlight {
  color: #2F6BFF;
  font-weight: 600;
}

/* Introduction Section */
.page-about__introduction .page-about__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* History Section */
.page-about__history {
  background-color: #2F6BFF;
  color: #ffffff;
}

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

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

.page-about__history-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-about__history-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-about__history-year {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #A5C4FF;
}

.page-about__history-item .page-about__text-block {
  color: #f0f0f0;
  font-size: 0.95em;
}

/* Mission Vision Section */
.page-about__mission-vision .page-about__sub-title {
  color: #2F6BFF;
}

.page-about__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.page-about__content-block {
  padding: 20px 0;
}

/* Core Values Section */
.page-about__core-values {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-about__core-values .page-about__section-title {
  color: #ffffff;
}

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

.page-about__value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-about__value-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-about__value-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #A5C4FF;
}

.page-about__value-description {
  color: #f0f0f0;
  font-size: 0.95em;
}

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

.page-about__team-member {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #2F6BFF;
  display: block;
}

.page-about__member-name {
  font-size: 1.6em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1.1em;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-about__member-bio {
  font-size: 0.95em;
  color: #333333;
}

.page-about__team-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-about__team-cta a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-about__team-cta a:hover {
  text-decoration: underline;
}

/* Technology and Security Section */
.page-about__tech-security {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-about__tech-security .page-about__section-title {
  color: #ffffff;
}

.page-about__tech-security .page-about__sub-title {
  color: #A5C4FF;
}

.page-about__tech-security .page-about__text-block {
  color: #f0f0f0;
}

.page-about__tech-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Customer Experience Section */
.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-about__feature-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-about__feature-description {
  font-size: 0.95em;
  color: #333333;
}

/* Social Responsibility Section */
.page-about__social-responsibility {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-about__social-responsibility .page-about__section-title {
  color: #ffffff;
}

.page-about__social-responsibility .page-about__sub-title {
  color: #A5C4FF;
}

.page-about__social-responsibility .page-about__text-block {
  color: #f0f0f0;
}

.page-about__responsibility-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Conclusion Section */
.page-about__conclusion-content {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- General Image Sizing --- */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 1024px) {
  .page-about__container {
    padding: 15px;
  }

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

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

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

  .page-about__grid-two-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@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: 10px !important; /* body padding-top is handled by shared.css */
    padding-bottom: 30px;
  }

  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-about__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped on mobile */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

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

  .page-about__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-about__cta-buttons {
    flex-direction: column !important;
    gap: 10px;
  }

  .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__section {
    padding: 30px 0;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

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

  .page-about__text-block {
    font-size: 1em;
  }

  /* History Section */
  .page-about__history-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__history-image {
    height: 180px; /* Adjust height for mobile */
  }

  /* Core Values Section */
  .page-about__values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__value-icon {
    width: 80px;
    height: 80px;
  }

  /* Team Section */
  .page-about__team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__team-photo {
    width: 120px;
    height: 120px;
  }

  /* Features Section */
  .page-about__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-icon {
    width: 60px;
    height: 60px;
  }

  /* Universal image and container sizing for mobile */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-image-wrapper,
  .page-about__history-item,
  .page-about__value-card,
  .page-about__team-member,
  .page-about__feature-card,
  .page-about__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}