.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding to respect header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Primary/Secondary gradient */
  color: #FFFFFF;
  text-align: center;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-about__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
  max-width: 100%;
}

.page-about__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 100%;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: 2.2em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__mission-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-about__mission-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.page-about__mission-text {
  flex: 1;
}

.page-about__mission-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

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

.page-about__mission-text li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%232F6BFF"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-about__mission-text li strong {
  color: #2F6BFF; /* Primary Color */
}

.page-about__mission-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about__values-section {
  padding: 60px 0;
}

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

.page-about__value-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

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

.page-about__value-title {
  font-size: 1.5em;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 10px;
}

.page-about__value-description {
  color: #1F2D3D; /* Text Main */
}

.page-about__team-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-about__team-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.page-about__team-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about__team-text {
  flex: 1;
}

.page-about__team-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-about__contact-link {
  display: inline-block;
  color: #2F6BFF; /* Primary Color */
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-about__contact-link:hover {
  color: #6FA3FF; /* Secondary Color */
  text-decoration: underline;
}

.page-about__cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Secondary/Primary gradient */
  text-align: center;
  color: #FFFFFF;
  margin-top: 60px;
}

.page-about__cta-inner {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__mission-content,
  .page-about__team-content {
    flex-direction: column;
  }
  .page-about__mission-image-wrapper,
  .page-about__team-image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-about__hero-image-wrapper {
    max-width: 90%;
  }
  .page-about__main-title {
    font-size: clamp(2em, 4.5vw, 2.5em);
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 15px;
  }
  .page-about__hero-section {
    padding-bottom: 30px;
  }
  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__mission-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__team-image {
    max-width: 100%;
    height: auto;
  }
  .page-about__value-icon {
    width: 80px;
    height: 80px;
  }
  .page-about__section-title {
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
  }
  /* Ensure all content area images are responsive and don't cause overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }
  .page-about__intro-text {
    font-size: 0.95em;
  }
  .page-about__mission-text li {
    padding-left: 25px;
    background-size: 18px;
  }
  .page-about__value-card {
    padding: 20px;
  }
  .page-about__value-title {
    font-size: 1.3em;
  }
  .page-about__section-title {
    font-size: 1.4em;
  }
  .page-about__cta-title {
    font-size: 1.6em;
  }
}