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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Image above, text below, so no absolute positioning for text over image */
}

.page-about__hero-content {
  padding: 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text content */
  background-color: rgba(19, 19, 19, 0.7); /* Dark semi-transparent background for text */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.2rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn-secondary {
  background: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn-secondary:hover {
  background: #E53935; /* Auxiliary color */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-about__section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section--introduction {
  background-color: #7A0E0E; /* Deep Red */
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.page-about__heading {
  font-size: 2.5rem;
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-about__sub-heading {
  font-size: 1.8rem;
  color: #FFF5E1; /* Text Main */
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

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

.page-about__highlight {
  color: #FFD86A; /* Lighter gold for highlights */
  font-weight: bold;
}

/* Image styling within sections */
.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
  width: 40%;
  max-width: 400px; /* Constrain max width for floated image */
}

/* Clearfix for floated images */
.page-about__section--our-journey::after {
  content: "";
  display: table;
  clear: both;
}

/* Feature Grid */
.page-about__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-title {
  font-size: 1.5rem;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-about__image--feature {
  width: 100%;
  max-width: 400px; /* Keep feature images a reasonable size */
  height: auto;
  object-fit: cover;
  margin-top: 20px;
  margin-bottom: 0;
  border-radius: 5px;
}

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

.page-about__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  cursor: pointer;
  background-color: #C91F17; /* Main color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #FFF5E1; /* Text Main */
}

.page-about__faq-item[open] .page-about__faq-question {
  border-bottom-color: transparent;
}

.page-about__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  background-color: #D32F2F; /* Card BG */
}

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

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

/* Call to Action Section */
.page-about__section--cta {
  text-align: center;
  padding-bottom: 80px;
  background-color: #7A0E0E; /* Deep Red */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: 0;
    padding: 15px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page-about__hero-description {
    font-size: 1.1rem;
  }
  .page-about__heading {
    font-size: 2.2rem;
  }
  .page-about__image--left {
    float: none;
    margin-right: 0;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 20px;
  }
  .page-about__hero-content {
    border-radius: 0;
    box-shadow: none;
    background-color: rgba(19, 19, 19, 0.8);
    width: 100%;
  }
  .page-about__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-about__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-about__sub-heading {
    font-size: 1.5rem;
  }
  .page-about__paragraph {
    font-size: 1rem;
  }

  /* Images responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__feature-item {
    padding: 20px;
  }
  .page-about__image--feature {
    max-width: 100%;
  }

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