.page-about {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Inherit from body or shared.css */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.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, 0, 0.7); /* Dark overlay for text readability */
  z-index: 2;
}

.page-about__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-about__main-title {
  font-size: 3.5em;
  color: #E0B73D; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__intro-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

.page-about__btn-primary {
  background-color: #E0B73D; /* Gold */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #E0B73D;
}

.page-about__btn-primary:hover {
  background-color: #d4a935;
  color: #0A2463;
  border-color: #d4a935;
}

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

.page-about__btn-secondary:hover {
  background-color: #E0B73D;
  color: #0A2463;
}

.page-about__section {
  padding: 80px 20px;
  text-align: center;
}

.page-about__section--mission {
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-about__section--ecosystem {
  background-color: #000; /* Dark background */
  color: #ffffff;
}

.page-about__section--security {
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-about__section--community {
  background-color: #000; /* Dark background */
  color: #ffffff;
}

.page-about__section--future {
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-about__faq-section {
  background-color: #000; /* Dark background */
  color: #ffffff;
}

.page-about__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: #E0B73D; /* Gold for section titles */
}

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

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-about__highlight {
  color: #E0B73D;
  font-weight: bold;
}

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

.page-about__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(224, 183, 61, 0.3); /* Subtle gold border */
}

.page-about__card-title {
  font-size: 1.8em;
  color: #E0B73D; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-about__card-title a {
  color: #E0B73D;
  text-decoration: none;
}

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

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

.page-about__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  object-fit: cover;
  display: block;
}

.page-about__image-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 50%; /* Adjust as needed */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__image-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 50%; /* Adjust as needed */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__content-block {
  text-align: left;
  overflow: hidden; /* Clear floats */
  margin-top: 20px;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #E0B73D; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__cta-buttons--center {
  margin-top: 40px;
}

.page-about__link {
  color: #E0B73D;
  text-decoration: none;
  font-weight: bold;
}

.page-about__link:hover {
  text-decoration: underline;
}

.page-about__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-about__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(224, 183, 61, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(224, 183, 61, 0.1); /* Gold tint for question */
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: rgba(224, 183, 61, 0.2);
}

.page-about__faq-title {
  font-size: 1.2em;
  color: #E0B73D; /* Gold text for FAQ questions */
  margin: 0;
}

.page-about__faq-toggle {
  font-size: 1.8em;
  color: #E0B73D;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(0deg); /* No rotation for minus sign */
}

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

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__image-right,
  .page-about__image-left {
    width: 100%;
    float: none;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    height: 500px;
  }
  .page-about__main-title {
    font-size: 2.2em;
  }
  .page-about__intro-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-about__card-grid {
    grid-template-columns: 1fr;
  }
  .page-about__paragraph,
  .page-about__card-text {
    font-size: 0.95em;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  
  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__cta-buttons,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-about__faq-question,
  .page-about__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below fixed header on mobile */
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__faq-title {
    font-size: 1em;
  }
}