/* style/security-center.css */
.page-security-center {
  color: #ffffff; /* Body background is #000 (dark), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000;
}

.page-security-center__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-security-center__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Adjust for text readability */
}

.page-security-center__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
}

.page-security-center__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-security-center__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-security-center__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-security-center__section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-security-center__section.page-security-center__dark-bg {
  background-color: #1a1a1a;
}

.page-security-center__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-security-center__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-security-center__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-security-center__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-security-center__btn-primary,
.page-security-center__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-security-center__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-security-center__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-security-center__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-security-center__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-security-center__inline-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-security-center__inline-link:hover {
  text-decoration: underline;
}

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

.page-security-center__feature-item {
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-security-center__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-security-center__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* Content Grid for text and image */
.page-security-center__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-security-center__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-security-center__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-security-center__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Security List */
.page-security-center__security-list,
.page-security-center__gaming-ethics-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-security-center__security-list li,
.page-security-center__gaming-ethics-list li {
  background-color: #000;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-security-center__list-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

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

.page-security-center__faq-item {
  background-color: #000;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-security-center__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0d0d0d;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid #1a1a1a;
}

.page-security-center__faq-question:hover {
  background-color: #1a1a1a;
}

.page-security-center__faq-question h3 {
  margin: 0;
  color: #26A9E0;
}

.page-security-center__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

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

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

.page-security-center__cta-bottom {
  padding: 80px 20px;
  text-align: center;
  background-color: #26A9E0;
}

.page-security-center__cta-bottom .page-security-center__section-title {
  color: #ffffff;
}

.page-security-center__cta-bottom .page-security-center__text-block {
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-security-center__cta-bottom .page-security-center__btn-primary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-security-center__cta-bottom .page-security-center__btn-primary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-security-center__cta-bottom .page-security-center__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-security-center__cta-bottom .page-security-center__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-security-center__text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-security-center__hero-title {
    font-size: 2.5em;
  }
  .page-security-center__section-title {
    font-size: 2em;
  }
  .page-security-center__content-grid {
    grid-template-columns: 1fr;
  }
  .page-security-center__content-grid--reverse {
    grid-template-columns: 1fr;
  }
}