.page-about {
  color: #ffffff; /* Body background is dark (#000), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000; /* Ensure body content has dark background */
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #FFD700, #8B0000);
  min-height: 400px;
  color: #ffffff;
}

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.page-about__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff; /* White text on dark/gradient background for contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-about__description-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary brand color */
  color: #000000; /* Dark text for contrast on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--large {
  padding: 18px 50px;
  font-size: 1.3em;
}

.page-about__section {
  padding: 80px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__content-block {
  flex: 1;
  min-width: 300px;
}

.page-about__content-block--left {
  padding-right: 20px;
}

.page-about__content-block--right {
  padding-left: 20px;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-about__heading {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #FFD700; /* Gold heading */
  font-weight: bold;
}

.page-about__heading--center {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

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

.page-about__sub-heading--center {
  text-align: center;
  width: 100%;
}

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

.page-about__paragraph--center {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-about__list-item::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-about__list--inline .page-about__list-item {
  text-align: center;
  padding-left: 0;
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.page-about__list--inline .page-about__list-item::before {
  display: none;
}

.page-about__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

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

.page-about__feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(139, 0, 0, 0.2); /* Dark red tint on hover for better visibility on dark background */
}

.page-about__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  /* filter: drop-shadow(0 0 5px #FFD700); */ /* Removed filter to adhere to no-filter rule */
}

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

.page-about__feature-description {
  font-size: 1em;
  color: #cccccc;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

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

.page-about__team-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-about__member-name {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1em;
  color: #8B0000;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-about__member-bio {
  font-size: 0.95em;
  color: #cccccc;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-about__faq-question:hover {
  background: #1a1a1a;
  border-color: #FFD700;
}

.page-about__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold for question text */
  pointer-events: none;
}

.page-about__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #8B0000; /* Dark red when active */
  transform: rotate(45deg); /* Rotate for minus sign effect */
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #0d0d0d;
  color: #cccccc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #1a1a1a;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 3em;
  }
  .page-about__heading {
    font-size: 2em;
  }
  .page-about__sub-heading {
    font-size: 1.6em;
  }
  .page-about__paragraph {
    font-size: 1em;
  }
  .page-about__list-item {
    font-size: 1em;
  }
  .page-about__list--inline .page-about__list-item {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 300px;
  }
  .page-about__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-about__description-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__cta-button--large {
    padding: 15px 40px;
    font-size: 1.1em;
  }
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__container {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-block--left, .page-about__content-block--right {
    padding: 0;
  }
  .page-about__image-block img {
    border-radius: 5px;
  }
  .page-about__heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-about__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-about__paragraph {
    font-size: 0.95em;
  }
  .page-about__list-item {
    font-size: 0.95em;
  }
  .page-about__feature-grid, .page-about__team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-about__team-avatar {
    width: 120px;
    height: 120px;
  }
  .page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-question h3 {
    font-size: 1em;
  }
  .page-about__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .page-about__faq-answer {
    padding: 0 20px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px 20px !important;
  }
  /* Mobile image and container responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__feature-item,
  .page-about__team-member,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}