.page-about {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: var(--bg-color, #F5F7FA); /* Default page background from shared or fallback */
}

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

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

.page-about__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 20px;
}

.page-about__hero-image-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container */
  display: block;
}

.page-about__hero-content-wrapper {
  background: linear-gradient(180deg, rgba(229, 57, 53, 0.9) 0%, rgba(255, 90, 79, 0.9) 100%);
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.page-about__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-about__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

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

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

.page-about__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse {
  grid-template-areas: "image text";
}

.page-about__content-grid--reverse .page-about__text-block {
  grid-area: text;
}

.page-about__content-grid--reverse .page-about__image-block {
  grid-area: image;
}

.page-about__text-block p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

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

.page-about__image-item {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-about__dark-section {
  background-color: #E53935;
  color: #ffffff;
}

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

.page-about__dark-section .page-about__section-description {
  color: #f0f0f0;
}

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

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__value-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-about__value-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-about__feature-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-about__feature-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__team-image-wrapper,
.page-about__responsibility-image-wrapper {
  text-align: center;
  margin-top: 30px;
}

.page-about__light-bg {
  background-color: #F5F7FA;
  color: #333333;
}

.page-about__light-bg .page-about__section-title {
  color: #E53935;
}

.page-about__faq-list {
  margin-top: 30px;
}

.page-about__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #fdfdfd;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: 500;
  color: #E53935;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-about__faq-answer p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.5em;
  }

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

  .page-about__content-grid {
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-about__hero-image-container {
    padding-bottom: 75%; /* Adjust aspect ratio for mobile if needed, or keep 16:9 */
  }

  .page-about__hero-image {
    object-fit: contain !important; /* Important for mobile to not crop */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-about__hero-content-wrapper {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: 2em !important;
    margin-bottom: 10px;
  }

  .page-about__intro-text {
    font-size: 1em !important;
    margin-bottom: 20px;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px !important;
    font-size: 0.95em !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-about__section-description {
    font-size: 0.95em !important;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .page-about__content-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .page-about__content-grid--reverse {
    grid-template-areas: unset !important; /* Reset grid area for single column */
  }

  .page-about__values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-about__value-card {
    padding: 25px !important;
  }

  .page-about__value-title {
    font-size: 1.2em !important;
  }

  .page-about__feature-list li {
    font-size: 0.95em !important;
  }

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__image-block,
  .page-about__text-block,
  .page-about__team-image-wrapper,
  .page-about__responsibility-image-wrapper,
  .page-about__faq-list,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__faq-question {
    font-size: 1em !important;
    padding: 15px 20px !important;
  }

  .page-about__faq-answer {
    padding: 0 20px 15px 20px !important;
    font-size: 0.95em !important;
  }
}