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

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  justify-content: center;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-about__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Use clamp for H1 */
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFF3E6;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-about__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-about__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Main color */
  border: 2px solid #FF8C1A; /* Border */
}

.page-about__btn-secondary:hover {
  background: #FF8C1A;
  color: #FFF3E6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.2);
}

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

.page-about__dark-section {
  background-color: #17191F; /* Card BG */
}

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-about__section-title--light {
  color: #FFF3E6;
}

.page-about__content-area {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-about__text-block p {
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-about__text-block--light p {
  color: #FFF3E6;
}

.page-about__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__card {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  color: #FFF3E6; /* Text Main */
}

.page-about__card--inverted {
  background-color: #0D0E12;
  border: 1px solid #FF8C1A;
}

.page-about__card-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #FF8C1A;
  margin-bottom: 15px;
}

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-about__value-list li::before {
  content: '✓';
  color: #FFA53A;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.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: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  text-align: center;
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
}

.page-about__feature-icon {
  width: 100%; /* Ensure images are responsive within cards */
  height: auto;
  max-height: 200px; /* Example max height */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #A84F0C;
}

.page-about__feature-card .page-about__card-title {
  color: #FF8C1A;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-about__feature-card p {
  font-size: 0.95em;
  line-height: 1.7;
  flex-grow: 1;
  color: #f0f0f0;
}

.page-about__btn-link {
  display: inline-block;
  margin-top: 20px;
  color: #FFA53A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-about__btn-link:hover {
  color: #FFF3E6;
  text-decoration: underline;
}

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

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
}

details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF3E6; /* Text Main */
}

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

details.page-about__faq-item summary.page-about__faq-question:hover {
  background: #2a2c33;
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FF8C1A;
}

.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 20px 20px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

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

.page-about__faq-answer a {
  color: #FFA53A;
  text-decoration: none;
}

.page-about__faq-answer a:hover {
  text-decoration: underline;
}

.page-about__cta-bottom {
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-bottom .page-about__section-title {
  margin-bottom: 20px;
}

.page-about__cta-bottom p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    padding: 30px 15px;
  }
  .page-about__main-title {
    font-size: clamp(2.2em, 4.5vw, 3.5em);
  }
  .page-about__intro-text {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: clamp(1.6em, 3vw, 2.5em);
  }
  .page-about__grid-layout, .page-about__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-about__card, .page-about__feature-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 15px;
  }
  .page-about__hero-section {
    padding-top: 10px; /* Consistent small top padding */
    min-height: 400px;
  }
  .page-about__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    position: relative;
    height: auto;
    max-height: 300px; /* Limit height for mobile */
    filter: brightness(0.7);
  }
  .page-about__hero-image-wrapper {
    position: static;
    width: 100%;
    height: auto;
  }
  .page-about__hero-content {
    padding: 20px 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-top: -80px; /* Overlap slightly with the image */
  }
  .page-about__main-title {
    font-size: clamp(2em, 6vw, 2.8em);
    margin-bottom: 15px;
  }
  .page-about__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: clamp(1.5em, 5vw, 2.2em);
    margin-bottom: 30px;
  }
  .page-about__content-area {
    font-size: 1em;
    text-align: left;
  }
  .page-about__image-content {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-about__grid-layout, .page-about__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card, .page-about__feature-card {
    padding: 20px;
    text-align: left;
  }
  .page-about__feature-icon {
    max-height: 150px;
    margin-bottom: 15px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-about__feature-card .page-about__card-title {
    font-size: 1.2em;
  }
  .page-about__feature-card p {
    font-size: 0.9em;
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-qtext {
    font-size: 1em;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 15px 15px;
  }
  .page-about__cta-bottom {
    padding: 50px 0;
  }
  .page-about__cta-bottom p {
    font-size: 1em;
    padding: 0 15px;
  }
}