/* style/resources-88go-fairness-security.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
  --background-white: #FFFFFF;
  --black-color: #000000;
}

.page-resources-88go-fairness-security {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--black-color);
}

.page-resources-88go-fairness-security__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); /* Ensure space for fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7bb0 100%);
  min-height: 500px;
  overflow: hidden;
}

.page-resources-88go-fairness-security__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-88go-fairness-security__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-88go-fairness-security__intro-description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-resources-88go-fairness-security__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-88go-fairness-security__btn-primary,
.page-resources-88go-fairness-security__btn-secondary {
  display: inline-block;
  padding: 14px 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; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-88go-fairness-security__btn-primary {
  background-color: var(--button-login); /* Use specific login color */
  color: var(--text-light);
  border: 2px solid var(--button-login);
}

.page-resources-88go-fairness-security__btn-primary:hover {
  background-color: darken(var(--button-login), 10%);
  border-color: darken(var(--button-login), 10%);
}

.page-resources-88go-fairness-security__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-88go-fairness-security__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-88go-fairness-security__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-88go-fairness-security__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-resources-88go-fairness-security__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-white); /* Light background for main content */
  color: var(--text-dark); /* Dark text on light background */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.page-resources-88go-fairness-security__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-88go-fairness-security__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
  margin-top: 40px;
}

.page-resources-88go-fairness-security__sub-title {
  font-size: 1.8em;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-88go-fairness-security__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-88go-fairness-security__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-88go-fairness-security__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-88go-fairness-security__btn--large {
  padding: 16px 35px;
  font-size: 1.1em;
}

.page-resources-88go-fairness-security__faq-section {
  padding: 80px 20px;
  background-color: var(--primary-color); /* Brand color background */
  color: var(--text-light); /* Light text on brand color */
  text-align: center;
}

.page-resources-88go-fairness-security__faq-section .page-resources-88go-fairness-security__section-title {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.page-resources-88go-fairness-security__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-88go-fairness-security__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-resources-88go-fairness-security__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-88go-fairness-security__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--text-light);
}

.page-resources-88go-fairness-security__faq-title {
  margin: 0;
  color: var(--text-light);
}

.page-resources-88go-fairness-security__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-88go-fairness-security__faq-item.active .page-resources-88go-fairness-security__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-88go-fairness-security__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

.page-resources-88go-fairness-security__faq-item.active .page-resources-88go-fairness-security__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 15px 25px 20px;
}

.page-resources-88go-fairness-security__faq-answer .page-resources-88go-fairness-security__paragraph {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-88go-fairness-security__main-title {
    font-size: 2.8em;
  }

  .page-resources-88go-fairness-security__intro-description {
    font-size: 1.1em;
  }

  .page-resources-88go-fairness-security__section-title {
    font-size: 2em;
  }

  .page-resources-88go-fairness-security__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-88go-fairness-security {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-88go-fairness-security__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

  .page-resources-88go-fairness-security__hero-content {
    margin-bottom: 20px;
  }

  .page-resources-88go-fairness-security__main-title {
    font-size: 2.2em;
  }

  .page-resources-88go-fairness-security__intro-description {
    font-size: 1em;
  }

  .page-resources-88go-fairness-security__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-88go-fairness-security__btn-primary,
  .page-resources-88go-fairness-security__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-88go-fairness-security__content-area {
    padding: 30px 15px;
    margin-top: -60px;
  }

  .page-resources-88go-fairness-security__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-resources-88go-fairness-security__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-resources-88go-fairness-security__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
  }

  .page-resources-88go-fairness-security__paragraph {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-resources-88go-fairness-security__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-resources-88go-fairness-security__cta-section {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .page-resources-88go-fairness-security__btn--large {
    padding: 14px 25px;
    font-size: 1em;
  }

  .page-resources-88go-fairness-security__faq-section {
    padding: 60px 15px;
  }

  .page-resources-88go-fairness-security__faq-question {
    padding: 18px 20px;
    font-size: 1.1em;
  }

  .page-resources-88go-fairness-security__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-88go-fairness-security__main-title {
    font-size: 1.8em;
  }

  .page-resources-88go-fairness-security__section-title {
    font-size: 1.6em;
  }
}

/* Ensure all images within content area are responsive and not smaller than 200px */
.page-resources-88go-fairness-security img {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filter allowed for images */
.page-resources-88go-fairness-security img {
  filter: none; 
}