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

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

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #E5B80B; /* Gold for main titles */
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #0A2463;
  border-radius: 2px;
}

.page-about__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E5B80B; /* Gold for sub-titles */
}

.page-about__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0; /* Light grey for body text on dark background */
}

.page-about__text-block strong {
  color: #E5B80B;
}

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

.page-about__list-item::before {
  content: '✓';
  color: #E5B80B;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-about__btn-primary {
  background-color: #E5B80B; /* Gold */
  color: #0A2463; /* Dark Blue */
  border-color: #E5B80B;
}

.page-about__btn-primary:hover {
  background-color: #0A2463; /* Dark Blue */
  color: #E5B80B; /* Gold */
  border-color: #E5B80B;
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #E5B80B; /* Gold */
  border-color: #E5B80B;
}

.page-about__btn-secondary:hover {
  background-color: #E5B80B; /* Gold */
  color: #0A2463; /* Dark Blue */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Minimum height for hero */
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #E5B80B; /* Gold for hero title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
  font-size: 22px;
  line-height: 1.5;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Introduction Section */
.page-about__introduction-section {
  padding: 80px 0;
}

.page-about__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

/* Mission Section */
.page-about__mission-section {
  padding: 80px 0;
}

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

.page-about__mission-text {
  text-align: left;
}

.page-about__mission-image-wrapper {
  text-align: center;
}

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

.page-about__value-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__mission-text .page-about__btn-primary {
  margin-top: 30px;
}

/* Security Section */
.page-about__security-section {
  padding: 80px 0;
}

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

.page-about__security-image-wrapper {
  text-align: center;
}

.page-about__security-text {
  text-align: left;
}

.page-about__security-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__security-text .page-about__btn-secondary {
  margin-top: 30px;
}

/* Games Section */
.page-about__games-section {
  padding: 80px 0;
}

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

.page-about__games-text {
  text-align: left;
}

.page-about__games-image-wrapper {
  text-align: center;
}

.page-about__game-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__games-text .page-about__btn-primary {
  margin-top: 30px;
}

/* Support Section */
.page-about__support-section {
  padding: 80px 0;
}

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

.page-about__support-image-wrapper {
  text-align: center;
}

.page-about__support-text {
  text-align: left;
}

.page-about__support-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__support-text .page-about__btn-secondary {
  margin-top: 30px;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #0A2463; /* Dark blue background */
  border: 1px solid #1c3d7e;
  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: #1c3d7e;
  border-color: #E5B80B;
}

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

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E5B80B;
  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: 32px;
  height: 32px;
  transform: rotate(0deg);
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #ffffff;
  transform: rotate(180deg);
}

.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: #1a1a1a; /* Slightly lighter dark background for answer */
  color: #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 25px !important;
  opacity: 1;
}

.page-about__faq-answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* CTA Section */
.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
}

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

.page-about__cta-content .page-about__section-title {
  margin-bottom: 20px;
}

.page-about__cta-content .page-about__text-block {
  font-size: 18px;
  margin-bottom: 40px;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .page-about__mission-layout,
  .page-about__security-layout,
  .page-about__games-layout,
  .page-about__support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-about__security-layout .page-about__security-image-wrapper,
  .page-about__support-layout .page-about__support-image-wrapper {
    order: -1; /* Image first on mobile for these sections */
  }

  .page-about__section-title {
    font-size: 32px;
  }

  .page-about__hero-title {
    font-size: 44px;
  }

  .page-about__hero-description {
    font-size: 20px;
  }

  .page-about__sub-title {
    font-size: 22px;
  }

  .page-about__text-block,
  .page-about__list-item,
  .page-about__faq-answer p {
    font-size: 16px;
  }

  .page-about__faq-question h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 30px 15px;
  }

  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-about__hero-section {
    padding-top: 0 !important; /* Ensure no double padding from shared header */
  }

  .page-about__hero-container {
    min-height: 300px;
  }

  .page-about__hero-image {
    height: 100%;
  }

  .page-about__hero-content {
    padding: 15px;
    max-width: 90%;
  }

  .page-about__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-about__hero-description {
    font-size: 18px;
  }

  .page-about__introduction-section,
  .page-about__mission-section,
  .page-about__security-section,
  .page-about__games-section,
  .page-about__support-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 50px 0;
  }

  .page-about__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-about__text-block,
  .page-about__list-item,
  .page-about__faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-about__list-item::before {
    top: 2px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-about__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* General image responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Container padding and sizing */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-about__faq-question {
    padding: 15px 20px;
  }

  .page-about__faq-question h3 {
    font-size: 17px;
  }

  .page-about__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-about__faq-answer {
    padding: 0 20px;
  }

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