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

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

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

.page-about__hero-section {
  padding-top: 10px; /* Minimal top padding, rely on body for header offset */
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-about__hero-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-about__hero-content {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.7);
  margin-top: -150px; /* Adjust to slightly overlap the image for visual flow */
  position: relative;
  z-index: 1;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-about__description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E8B020 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-about__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-about__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-about__section-subtitle {
  font-size: 1.1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-about__text-block {
  flex: 1;
  padding: 20px;
  background: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
}

.page-about__text-block p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-about__benefit-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.3);
}

.page-about__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-about__card p {
  color: #FFF6D6;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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: rgba(242, 193, 78, 0.1);
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 20px;
  background: rgba(17, 17, 17, 0.8); /* Slightly darker Card BG */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

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

.page-about__section--contact-cta {
  padding: 80px 0;
  text-align: center;
}

.page-about__dark-bg {
  background: #F2C14E; /* Main color */
  color: #111111; /* Dark text for contrast */
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-about__dark-bg .page-about__section-title {
  color: #111111; /* Dark text for contrast */
}

.page-about__dark-bg .page-about__section-title::after {
  background: #111111;
}

.page-about__dark-bg .page-about__section-subtitle {
  color: #333333; /* Darker text for subtitle */
}

.page-about__dark-bg .page-about__btn-primary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #111111;
}

.page-about__dark-bg .page-about__btn-primary:hover {
  background: #333333;
  color: #FFD36B;
}

.page-about__dark-bg .page-about__btn-secondary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-about__dark-bg .page-about__btn-secondary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E8B020 100%);
  color: #111111;
}

/* General image responsiveness */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-about__hero-image {
    height: 500px;
  }
  .page-about__hero-content {
    margin-top: -100px;
  }
  .page-about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-about__text-block, .page-about__image-block {
    flex: none;
    width: 100%;
  }
  .page-about__image-block img {
    width: 100%;
  }
  .page-about__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-about__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 15px;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }
  .page-about__hero-image {
    height: auto !important; /* Allow height to adjust */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
  }
  .page-about__hero-image img {
    object-fit: contain !important; /* Ensure image is fully visible */
    width: 100% !important;
    height: auto !important;
  }
  .page-about__hero-content {
    margin-top: -50px; /* Less overlap on mobile */
    padding: 30px 15px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-about__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-about__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-about__btn-primary, .page-about__btn-secondary,
  .page-about a[class*="button"], .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .page-about__section-subtitle {
    font-size: 0.95rem;
    margin-top: -10px;
    margin-bottom: 30px;
  }
  .page-about__text-block {
    padding: 15px;
  }
  .page-about__text-block p {
    font-size: 0.95rem;
  }
  .page-about__benefits-grid {
    grid-template-columns: 1fr; /* Single column for benefits */
    gap: 20px;
  }
  .page-about__card-title {
    font-size: 1.3rem;
  }
  .page-about__faq-list {
    margin-top: 30px;
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-qtext {
    font-size: 1rem;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 15px;
  }
  .page-about__dark-bg {
    padding: 40px 20px;
  }
  /* General image and container responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-about__section, .page-about__card, .page-about__container,
  .page-about__text-block, .page-about__image-block, .page-about__benefits-grid,
  .page-about__faq-list, .page-about__faq-item, .page-about__dark-bg {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-about__section--mission .page-about__content-wrapper,
  .page-about__section--journey .page-about__content-wrapper,
  .page-about__section--social-responsibility .page-about__content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}