/* style/resources-onebet-app-security.css */
.page-resources-onebet-app-security {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff;
}

.page-resources-onebet-app-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-onebet-app-security__hero-section {
  position: relative;
  background-color: #f8f8f8;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-onebet-app-security__hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-onebet-app-security__hero-title {
  font-size: 3.2em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-onebet-app-security__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-resources-onebet-app-security__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-onebet-app-security__btn-primary,
.page-resources-onebet-app-security__btn-secondary {
  display: inline-block;
  padding: 15px 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;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-resources-onebet-app-security__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-onebet-app-security__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-resources-onebet-app-security__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-onebet-app-security__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-resources-onebet-app-security__hero-image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-resources-onebet-app-security__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-onebet-app-security__section {
  padding: 60px 0;
}

.page-resources-onebet-app-security__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-onebet-app-security__section-intro {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-resources-onebet-app-security__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-resources-onebet-app-security__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-resources-onebet-app-security__content-text {
  flex: 1;
}

.page-resources-onebet-app-security__content-subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-onebet-app-security__content-text p {
  margin-bottom: 15px;
  color: #444444;
}

.page-resources-onebet-app-security__content-image {
  flex: 1;
  text-align: center;
}

.page-resources-onebet-app-security__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-onebet-app-security__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-onebet-app-security__dark-section .page-resources-onebet-app-security__section-title,
.page-resources-onebet-app-security__dark-section .page-resources-onebet-app-security__content-subtitle {
  color: #ffffff;
}

.page-resources-onebet-app-security__dark-section .page-resources-onebet-app-security__section-intro,
.page-resources-onebet-app-security__dark-section .page-resources-onebet-app-security__content-text p {
  color: #e0e0e0;
}

.page-resources-onebet-app-security__faq-section {
  background-color: #f8f8f8;
}

.page-resources-onebet-app-security__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-resources-onebet-app-security__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-onebet-app-security__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-onebet-app-security__faq-item[open] .page-resources-onebet-app-security__faq-question {
  border-bottom: 1px solid #d0d0d0;
}

.page-resources-onebet-app-security__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-resources-onebet-app-security__faq-item[open] .page-resources-onebet-app-security__faq-toggle {
  content: '−';
}

.page-resources-onebet-app-security__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #444444;
  background-color: #fcfcfc;
}

.page-resources-onebet-app-security__faq-answer p {
  margin: 0;
}

.page-resources-onebet-app-security__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-onebet-app-security__faq-item summary {
  list-style: none;
}

.page-resources-onebet-app-security__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-onebet-app-security__cta-container {
  max-width: 900px;
}

.page-resources-onebet-app-security__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-resources-onebet-app-security__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-resources-onebet-app-security__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-onebet-app-security__hero-title {
    font-size: 2.8em;
  }

  .page-resources-onebet-app-security__section-title {
    font-size: 2em;
  }

  .page-resources-onebet-app-security__content-subtitle {
    font-size: 1.5em;
  }

  .page-resources-onebet-app-security__content-grid {
    flex-direction: column;
  }

  .page-resources-onebet-app-security__content-grid--reverse {
    flex-direction: column;
  }
}

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

  .page-resources-onebet-app-security__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure spacing below fixed header */
  }

  .page-resources-onebet-app-security__hero-title {
    font-size: 2.2em;
  }

  .page-resources-onebet-app-security__hero-description {
    font-size: 1em;
  }

  .page-resources-onebet-app-security__hero-buttons,
  .page-resources-onebet-app-security__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-onebet-app-security__btn-primary,
  .page-resources-onebet-app-security__btn-secondary {
    width: 100% !important; /* Ensure buttons take full width */
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-resources-onebet-app-security__section {
    padding: 40px 0;
  }

  .page-resources-onebet-app-security__section-title {
    font-size: 1.8em;
  }

  .page-resources-onebet-app-security__section-intro {
    font-size: 0.95em;
  }

  .page-resources-onebet-app-security__content-subtitle {
    font-size: 1.3em;
  }

  .page-resources-onebet-app-security__image,
  .page-resources-onebet-app-security__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-onebet-app-security__content-image,
  .page-resources-onebet-app-security__hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-onebet-app-security__container,
  .page-resources-onebet-app-security__cta-container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-resources-onebet-app-security__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-onebet-app-security__faq-answer {
    padding: 10px 15px;
  }

  .page-resources-onebet-app-security__cta-title {
    font-size: 2em;
  }

  .page-resources-onebet-app-security__cta-description {
    font-size: 1em;
  }

  /* Ensure all images within the content area are responsive */
  .page-resources-onebet-app-security img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-onebet-app-security__section,
  .page-resources-onebet-app-security__card,
  .page-resources-onebet-app-security__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}