.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #007bff; /* Primary color fallback */
  padding-bottom: 50px;
}

.page-about__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Secondary color for button */
  color: #007bff; /* Primary color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #ffc107;
}

.page-about__hero-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-about__heading {
  font-size: 2.5em;
  color: #007bff; /* Primary color for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-about__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Secondary color for underline */
  border-radius: 2px;
}

.page-about__story-section, .page-about__mission-vision-section, .page-about__commitment-section, .page-about__cloud-advantage-section, .page-about__team-section, .page-about__values-section, .page-about__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-about__story-section:nth-of-type(even), .page-about__cloud-advantage-section:nth-of-type(even), .page-about__values-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

.page-about__image-block {
  flex: 1;
  text-align: center;
}

.page-about__story-image, .page-about__cloud-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__vision-card, .page-about__mission-card, .page-about__value-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-about__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

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

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

.page-about__mission-list li::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__commitment-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-about__commitment-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__item-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-about__advantage-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about__advantage-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #555555;
}

.page-about__advantage-list li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.page-about__button {
  display: inline-block;
  background-color: #007bff; /* Primary color for button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-about__button:hover {
  background-color: #0056b3;
}

.page-about__team-section {
  text-align: center;
}

.page-about__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

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

.page-about__member-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #ffc107;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-about__member-name {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1.1em;
  color: #777777;
  margin-bottom: 10px;
}

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

.page-about__team-closing {
  margin-top: 40px;
  font-style: italic;
  color: #666666;
}

.page-about__cta-section {
  padding: 80px 0;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-about__cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.page-about__cta-title {
  font-size: 2.8em;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-about__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #ffc107;
}

.page-about__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-about__cta-button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-about__cta-button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

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

.page-about__faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page-about__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-about__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__content-grid--reverse {
    flex-direction: column;
  }
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-content {
    padding: 60px 15px;
  }
  .page-about__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__story-section, .page-about__mission-vision-section, .page-about__commitment-section, .page-about__cloud-advantage-section, .page-about__team-section, .page-about__values-section, .page-about__faq-section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__text-block p {
    font-size: 1em;
  }
  .page-about__card-title {
    font-size: 1.6em;
  }
  .page-about__item-title {
    font-size: 1.3em;
  }
  .page-about__team-member {
    padding: 20px;
  }
  .page-about__member-name {
    font-size: 1.4em;
  }
  .page-about__member-photo {
    width: 200px;
    height: 200px;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }
  .page-about__cta-button + .page-about__cta-button {
    margin-top: 10px;
  }
  .page-about__faq-question {
    font-size: 1.2em;
  }
  /* Mobile content area image sizing */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__content-area {
    overflow-x: hidden;
  }
}