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

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

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

.page-about__section {
  padding: 60px 0;
  margin-bottom: 20px; /* Spacing between sections */
}

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #FF8C1A; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align content to top initially */
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-about__hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
  color: #FF8C1A; /* Primary brand color */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.2rem;
  color: #FFF3E6;
  margin-bottom: 30px;
}

/* CTA Button */
.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #FFF3E6; /* Text Main */
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

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

/* Content Wrapper with Image/Text */
.page-about__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

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

.page-about__text-block,
.page-about__image-block {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-about__text-block h3 {
  color: #FFA53A; /* Auxiliary brand color for subheadings */
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.page-about__text-block p {
  color: #FFF3E6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-about__value-list,
.page-about__security-list,
.page-about__award-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about__value-list li,
.page-about__security-list li,
.page-about__award-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF3E6;
}

.page-about__value-list li::before,
.page-about__security-list li::before,
.page-about__award-list li::before {
  content: '✔';
  color: #FF8C1A;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-about__product-card.page-about__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__product-card.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-about__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__product-title {
  font-size: 1.5rem;
  color: #FF8C1A; /* Primary brand color */
  margin-bottom: 15px;
}

.page-about__product-title a {
  color: #FF8C1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__product-title a:hover {
  color: #FFA53A;
}

.page-about__product-text {
  color: #FFF3E6;
  font-size: 0.95rem;
}

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

.page-about__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FF8C1A; /* Primary brand color */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-about__faq-question:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
}

.page-about__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #FFF3E6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-about__faq-item[open] .page-about__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-wrapper--reversed {
    flex-direction: column; /* Ensure consistent stacking on smaller screens */
  }
  .page-about__text-block,
  .page-about__image-block {
    max-width: 100%;
  }
  .page-about__section-title {
    font-size: 2rem;
  }
  .page-about__hero-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-about__section-description,
  .page-about__hero-description {
    font-size: 1rem;
  }
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__hero-image-wrapper {
    max-height: 400px;
  }
  .page-about__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__product-grid {
    grid-template-columns: 1fr;
  }
  .page-about__product-card.page-about__card {
    padding: 20px;
  }
  .page-about__product-title {
    font-size: 1.3rem;
  }
  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px;
  }
  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__image-block,
  .page-about__product-card,
  .page-about__faq-item,
  .page-about__cta-button,
  .page-about__container,
  .page-about__content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-about__hero-content,
  .page-about__product-card.page-about__card {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-about__section--introduction .page-about__text-block,
  .page-about__section--history .page-about__text-block,
  .page-about__section--mission .page-about__text-block,
  .page-about__section--security .page-about__text-block,
  .page-about__section--products .page-about__text-block,
  .page-about__section--customer-service .page-about__text-block,
  .page-about__section--achievements .page-about__text-block {
    padding-left: 0 !important; /* Remove container padding from nested blocks */
    padding-right: 0 !important;
  }
  .page-about__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.5rem;
  }
  .page-about__hero-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }
  .page-about__text-block h3 {
    font-size: 1.5rem;
  }
  .page-about__faq-question {
    font-size: 0.95rem;
  }
}