/* style/resources-security-and-reputation.css */
.page-resources-security-and-reputation {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
}

/* Header offset for main content */
.page-resources-security-and-reputation__hero-section {
  padding-top: var(--header-offset, 120px);
}

/* Universal image responsiveness */
.page-resources-security-and-reputation img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  filter: none;
}

/* Universal video responsiveness */
.page-resources-security-and-reputation video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-resources-security-and-reputation__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
}

/* Hero Section */
.page-resources-security-and-reputation__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0, #1a7bb5);
  color: #ffffff;
}

.page-resources-security-and-reputation__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-security-and-reputation__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-security-and-reputation__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-security-and-reputation__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-security-and-reputation__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-security-and-reputation__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-security-and-reputation__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-security-and-reputation__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-resources-security-and-reputation__section {
  padding: 60px 20px;
}

.page-resources-security-and-reputation__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-security-and-reputation__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-resources-security-and-reputation__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-resources-security-and-reputation__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

/* Buttons */
.page-resources-security-and-reputation__btn-primary,
.page-resources-security-and-reputation__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-resources-security-and-reputation__btn-primary:hover {
  background-color: #1a7bb5;
  border-color: #1a7bb5;
  transform: translateY(-3px);
}

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

.page-resources-security-and-reputation__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-resources-security-and-reputation__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Cards */
.page-resources-security-and-reputation__grid-container,
.page-resources-security-and-reputation__features-grid,
.page-resources-security-and-reputation__support-grid,
.page-resources-security-and-reputation__responsible-gaming-grid,
.page-resources-security-and-reputation__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-security-and-reputation__card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-security-and-reputation__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-resources-security-and-reputation__card-text {
  font-size: 1em;
  color: #555555;
}

.page-resources-security-and-reputation__card--dark {
  background-color: rgba(38, 169, 224, 0.1);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-resources-security-and-reputation__card--dark .page-resources-security-and-reputation__card-title {
  color: #26A9E0;
}

.page-resources-security-and-reputation__card--dark .page-resources-security-and-reputation__card-text {
  color: #f0f0f0;
}

/* Image Text Layout */
.page-resources-security-and-reputation__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-resources-security-and-reputation__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-resources-security-and-reputation__image-left,
.page-resources-security-and-reputation__image-right {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-security-and-reputation__text-left,
.page-resources-security-and-reputation__text-right {
  flex: 1;
  min-width: 300px;
}

/* Feature Items */
.page-resources-security-and-reputation__feature-item,
.page-resources-security-and-reputation__support-item,
.page-resources-security-and-reputation__benefit-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-resources-security-and-reputation__feature-icon,
.page-resources-security-and-reputation__support-image,
.page-resources-security-and-reputation__benefit-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-resources-security-and-reputation__feature-title,
.page-resources-security-and-reputation__support-title,
.page-resources-security-and-reputation__benefit-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-security-and-reputation__feature-description,
.page-resources-security-and-reputation__support-description,
.page-resources-security-and-reputation__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* CTA Container */
.page-resources-security-and-reputation__cta-container {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-security-and-reputation__text-center {
  text-align: center;
}

.page-resources-security-and-reputation__final-cta {
  padding: 80px 20px;
  background: linear-gradient(90deg, #26A9E0, #1a7bb5);
  color: #ffffff;
}

/* FAQ Section */
.page-resources-security-and-reputation__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-security-and-reputation__faq-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-security-and-reputation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f8f8f8;
  color: #333333;
  border-bottom: 1px solid #eee;
}

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

.page-resources-security-and-reputation__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

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

.page-resources-security-and-reputation__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

.page-resources-security-and-reputation__faq-item.active .page-resources-security-and-reputation__faq-answer {
  max-height: 1000px !important;
  padding: 20px 25px;
}

.page-resources-security-and-reputation__faq-answer p {
  margin-bottom: 0;
  color: #555555;
}