.page-about {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Text Main */
  line-height: 1.6;
  background-color: #B71C1C; /* Background color from custom palette */
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 500px; /* Ensure hero has a decent height */
  background-color: #C91F17; /* Main brand color */
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #FFF5E1; /* Text Main */
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  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, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #F4D34D; /* Gold */
  border: 2px solid #F4D34D; /* Gold border */
}

.page-about__btn-secondary:hover {
  background-color: #F4D34D; /* Gold */
  color: #7A0E0E; /* Deep Red for contrast */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-about__section {
  padding: 60px 0;
  text-align: center;
  background-color: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
}

.page-about__light-bg {
  background-color: #FFF5E1; /* Text Main as background for light section */
  color: #333333; /* Dark text for contrast */
}

.page-about__dark-bg {
  background-color: #7A0E0E; /* Deep Red as background for dark section */
  color: #FFF5E1; /* Text Main for contrast */
}

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

.page-about__light-bg .page-about__section-title {
  color: #C91F17; /* Main brand color for light background */
}

.page-about__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #FFD86A; /* Lighter gold for sub-titles */
}

.page-about__light-bg .page-about__sub-title {
  color: #E53935; /* Auxiliary color for light background */
}

.page-about__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-about__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD86A; /* Gold checkmark */
  font-weight: 700;
}

.page-about__light-bg .page-about__list li::before {
  color: #C91F17; /* Main brand color checkmark for light background */
}

.page-about__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

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

.page-about__content-text {
  flex: 1;
  min-width: 300px;
}

.page-about__content-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.page-about__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.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-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #FFF5E1; /* Text Main */
}

.page-about__feature-card .page-about__card-image {
  max-width: 100%;
  height: 250px; /* Fixed height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__feature-card .page-about__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A; /* Lighter gold */
}

.page-about__feature-card .page-about__card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-about__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 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;
  color: #FFD86A; /* Lighter gold */
  cursor: pointer;
  background-color: #E53935; /* Auxiliary color */
  border-bottom: 1px solid #C91F17; /* Main brand color */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-about__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #F4D34D; /* Gold */
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__content-row {
    flex-direction: column;
    text-align: center;
  }
  .page-about__content-row--reverse {
    flex-direction: column;
  }
  .page-about__content-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-about__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 15px;
  }

  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-about__paragraph,
  .page-about__list li,
  .page-about__feature-card .page-about__card-text,
  .page-about__faq-question,
  .page-about__faq-answer {
    font-size: 1rem;
  }
  .page-about__list {
    margin-left: 20px;
    margin-right: 20px;
  }

  .page-about__container {
    padding: 0 15px;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__content-row,
  .page-about__features-grid,
  .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__content-row {
    padding-left: 0;
    padding-right: 0;
  }
  .page-about__hero-section {
    padding-top: 10px !important;
  }
  .page-about__feature-card {
    padding: 20px;
  }
  .page-about__feature-card .page-about__card-image {
    height: 200px;
  }
  .page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }
}