.page-about {
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background from palette, ensures contrast with shared body bg */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Match body background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-about__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-about__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
}

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

.page-about__hero-cta {
  margin-top: 30px;
}

/* General Section Styling */
.page-about__section {
  padding: 80px 0;
  border-bottom: 1px solid #A84F0C; /* Border */
}

.page-about__section:last-of-type {
  border-bottom: none;
}

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

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

.page-about__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FF8C1A; /* Main color */
  text-align: center;
  margin-bottom: 50px;
}

.page-about__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-about__text-block .keyword {
  color: #FFA53A; /* Auxiliary color for keywords */
  font-weight: bold;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-about__card-title {
  font-size: 1.7rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

/* 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: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__feature-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 4px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-about__feature-title {
  font-size: 1.5rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__feature-description {
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
}

/* Lists */
.page-about__security-list,
.page-about__responsibility-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__security-item,
.page-about__responsibility-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #FFF3E6; /* Text Main */
}

.page-about__security-item strong,
.page-about__responsibility-item strong {
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
}

/* Contact Methods */
.page-about__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-about__contact-title {
  font-size: 1.6rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__contact-description {
  font-size: 1rem;
  margin-bottom: 25px;
}

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

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

.page-about__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFA53A; /* Auxiliary color */
  background-color: #17191F; /* Card BG */
}

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

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

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

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−';
}

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

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

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

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

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

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

.page-about__btn-secondary:hover {
  background-color: #FF8C1A; /* Main color */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-about__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-about__section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__hero-content {
    margin-top: 20px;
  }
  .page-about__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important; /* Mobile specific font size */
  }
  .page-about__hero-description {
    font-size: 1rem;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px; /* Add padding to prevent content overflow */
  }
  .page-about__heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    margin-bottom: 30px;
  }

  /* Images responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__feature-item,
  .page-about__contact-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__image {
    margin: 20px auto !important;
  }

  /* Buttons responsiveness */
  .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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important; /* Adjust padding for smaller screens */
    font-size: 1rem !important;
  }
  .page-about__hero-cta,
  .page-about__contact-methods,
  .page-about__faq-answer {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between stacked buttons */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__contact-methods {
    grid-template-columns: 1fr; /* Stack contact items */
  }

  /* FAQ responsiveness */
  .page-about__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px;
  }

  /* Fixed header spacing for top sections on mobile */
  .page-about__hero-section {
    padding-top: 10px !important; /* body already has padding-top for header offset */
  }
}

/* Ensure image minimum size for content images */
.page-about__image,
.page-about__feature-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no CSS filters are applied to images */
.page-about img {
  filter: none !important;
}

/* Ensure desktop video container width (not explicitly used but good to have for robustness) */
.page-about__video-container {
    width: 100%; /* Explicitly set for desktop as well */
}