.page-about {
  color: #FFF5E1; /* Text Main */
  background-color: #0a0a0a; /* Body background from shared.css, dark */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small padding for visual separation from header */
  padding-bottom: 60px;
  background-color: #B71C1C; /* Background color */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F4D34D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #F2B544; /* Border color */
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Ensure sections have a background to contrast with text */
}

.page-about__section--mission {
  background-color: #0a0a0a;
}

.page-about__section--advantages {
  background-color: #0a0a0a;
}

.page-about__section--commitment {
  background-color: #B71C1C; /* Background color */
}

.page-about__section--vision {
  background-color: #0a0a0a;
}

.page-about__section--faq {
  background-color: #0a0a0a;
}

.page-about__section--cta {
  background-color: #B71C1C; /* Background color */
  text-align: center;
}

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

.page-about__container--center {
  text-align: center;
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__text-block {
  font-size: 1.1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  justify-content: center;
}

.page-about__image-full {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-about__image-half {
  width: calc(50% - 10px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Styles */
.page-about__faq-list {
  margin-top: 40px;
}

.page-about__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #7A0E0E; /* Deep Red border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1; /* Text Main */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  transition: background-color 0.3s ease;
}

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

.page-about__faq-question:hover {
  background-color: #E53935; /* Auxiliary color */
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  line-height: 1.7;
  text-align: justify;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: 20px;
  }

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

  .page-about__image-half {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }

  .page-about__main-title {
    font-size: 2.2rem;
  }

  .page-about__hero-description {
    font-size: 1rem;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

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

  .page-about__text-block {
    font-size: 0.95rem;
  }

  .page-about__image-row {
    margin: 30px 0;
  }

  .page-about__image-half,
  .page-about__image-full {
    width: 100%;
  }

  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-about__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  /* Mobile responsive images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__image-row,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__cta-button {
    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;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.8rem;
  }

  .page-about__section-title {
    font-size: 1.6rem;
  }
}

/* Ensure contrast for text on card/background colors */
.page-about__dark-section .page-about__section-title,
.page-about__dark-section .page-about__text-block {
  color: #FFF5E1; /* Text Main */
}

.page-about__faq-item {
  color: #FFF5E1; /* Text Main */
}

.page-about__faq-question {
  color: #FFF5E1; /* Text Main */
}

.page-about__faq-answer {
  color: #FFF5E1; /* Text Main */
}