.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8; /* Light background for the page */
}

/* Ensure the main content has correct top padding if shared.css doesn't handle body */
/* If shared.css already sets padding-top on body, remove this from .page-about or set to 0 on the first section */
/* .page-about { padding-top: var(--header-offset, 120px); } */

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

.page-about__section-title,
.page-about__cta-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-about__btn-primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-about__btn-primary:hover {
  background-color: #a00000;
  border-color: #a00000;
}

.page-about__btn-secondary {
  background-color: #ffffff;
  color: #CC0000;
  border: 2px solid #CC0000;
}

.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #a00000;
  border-color: #a00000;
}

/* Hero Section */
.page-about__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  background-color: #333333;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure hero is not covered */
}

.page-about__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #CC0000;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-about__hero-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-about__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.page-about__values-section {
  padding: 60px 20px;
  background-color: #333333;
  color: #ffffff;
}

.page-about__values-section .page-about__section-title {
  color: #CC0000;
}

.page-about__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-about__values-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__values-item-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-about__values-item-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Tech & Security Section */
.page-about__tech-security-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  color: #333333;
}

/* Products Section */
.page-about__products-section {
  padding: 60px 20px;
  background-color: #333333;
  color: #ffffff;
}

.page-about__products-section .page-about__section-title {
  color: #CC0000;
}

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

.page-about__product-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-about__product-title {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-about__product-title a {
  color: #CC0000;
  text-decoration: none;
}

.page-about__product-title a:hover {
  text-decoration: underline;
}

.page-about__product-description {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Commitment Section */
.page-about__commitment-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-about__commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-about__commitment-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-about__commitment-item-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-about__commitment-item-description {
  font-size: 1em;
  color: #333333;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  color: #333333;
}

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

.page-about__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #333333;
  background-color: #fefefe;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #f0f0f0;
}

.page-about__faq-title {
  margin: 0;
  color: #333333;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #CC0000;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #fefefe;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-about__faq-answer .page-about__paragraph {
  margin-bottom: 0;
  font-size: 1em;
  color: #555555;
}

/* CTA Section */
.page-about__cta-section {
  padding: 80px 20px;
  background-color: #CC0000;
  color: #ffffff;
  text-align: center;
}

.page-about__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__cta-title {
  color: #ffffff;
  font-size: 3em;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-description {
    font-size: 1.2em;
  }
  .page-about__section-title,
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__values-list,
  .page-about__products-grid,
  .page-about__commitment-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-section {
    flex-direction: column;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure hero is not covered on mobile */
  }

  .page-about__hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__section-title,
  .page-about__cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-about__paragraph {
    font-size: 1em;
  }

  .page-about__values-list,
  .page-about__products-grid,
  .page-about__commitment-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-about__hero-image-wrapper,
  .page-about__product-card,
  .page-about__values-item,
  .page-about__commitment-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 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-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some spacing between stacked buttons */
  }

  .page-about__cta-section .page-about__btn-primary {
    margin-top: 20px;
  }

  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-about__faq-item.active .page-about__faq-answer {
    padding: 10px 20px;
  }

  .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title,
  .page-about__cta-title {
    font-size: 1.5em;
  }
  .page-about__faq-question {
    font-size: 0.95em;
  }
}