/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

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

.page-about__dark-bg {
  background-color: #1a1a2e;
  color: #f0f0f0;
}

.page-about__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__section-title--light-text {
  color: #f0f0f0; /* White text for titles on dark background */
}

.page-about__subtitle {
  font-size: 1.8em;
  color: #FFD700; /* Gold color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-about__text-block--light-text {
  color: #f0f0f0;
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__grid-layout--reverse {
  grid-template-areas: "image content";
}

.page-about__grid-layout--reverse .page-about__image-column {
  grid-area: image;
}

.page-about__grid-layout--reverse .page-about__content-column {
  grid-area: content;
}

.page-about__content-column--light-text {
  color: #f0f0f0;
}

.page-about__image-column {
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 128, 0.7); /* Dark blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-about__btn-primary:hover {
  background-color: #e6c200;
  color: #00005a;
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

/* History Section */
.page-about__milestones {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.page-about__milestone-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 1.05em;
  color: #333333;
}

.page-about__milestone-item strong {
  color: #000080;
}

/* Vision & Mission Section */
.page-about__mission-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.page-about__mission-item {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #f0f0f0;
}

.page-about__mission-item strong {
  color: #FFD700;
}

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

.page-about__value-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
}

.page-about__value-title {
  font-size: 1.5em;
  color: #000080; /* Dark blue */
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  color: #555555;
}

/* Products Section */
.page-about__product-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.page-about__product-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #FFD700;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #f0f0f0;
}

.page-about__product-item strong {
  color: #FFD700;
}

/* Security Section */
.page-about__security-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.page-about__security-item {
  background-color: #f9f9f9;
  border-left: 5px solid #000080;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 1.05em;
  color: #333333;
}

.page-about__security-item strong {
  color: #000080;
}

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

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

.page-about__dark-bg--card {
  background-color: rgba(0, 0, 128, 0.4); /* Dark blue translucent card */
  color: #f0f0f0;
}

.page-about__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-about__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Team Section */
.page-about__team-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.page-about__team-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 1.05em;
  color: #333333;
}

.page-about__team-item strong {
  color: #000080;
}

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

.page-about__award-card {
  background-color: rgba(0, 0, 128, 0.4); /* Dark blue translucent card */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #f0f0f0;
}

/* Future Section */
.page-about__future-plans {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.page-about__future-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 1.05em;
  color: #333333;
}

.page-about__future-item strong {
  color: #000080;
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

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

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #000080; /* Dark blue for question background */
  color: #FFD700; /* Gold text for question */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-about__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit;
}

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

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(0, 0, 0, 0.3); /* Slightly darker background for answer */
  color: #f0f0f0;
}

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

.page-about__faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: inherit;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__subtitle {
    font-size: 1.5em;
  }
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__grid-layout--reverse {
    grid-template-areas: unset;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-about__text-block, .page-about p, .page-about li {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__image-column, .page-about__content-column {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Ensure all image containers are responsive */
  .page-about__section, .page-about__card, .page-about__container, .page-about__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-about__values-grid, .page-about__responsibility-grid, .page-about__awards-grid {
    grid-template-columns: 1fr;
  }
  .page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 15px 20px;
  }
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset is applied */
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.5em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__button {
    padding: 12px 20px;
  }
}