/* style/resources-f8bet-security-features.css */

/* Base styles for the page content */
.page-resources-f8bet-security-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Hero Section */
.page-resources-f8bet-security-features__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #1a1a1a;
  overflow: hidden;
  text-align: center;
}

.page-resources-f8bet-security-features__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-resources-f8bet-security-features__hero-title {
  font-size: 3.2em;
  color: #26A9E0; /* Brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-f8bet-security-features__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-resources-f8bet-security-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-f8bet-security-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  filter: none; /* No filter */
}

/* General Section Styles */
.page-resources-f8bet-security-features__content-section,
.page-resources-f8bet-security-features__feature-section,
.page-resources-f8bet-security-features__faq-section,
.page-resources-f8bet-security-features__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-f8bet-security-features__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-f8bet-security-features__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f8bet-security-features__dark-text {
  color: #333333;
}

.page-resources-f8bet-security-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-f8bet-security-features__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-f8bet-security-features__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-resources-f8bet-security-features__feature-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-resources-f8bet-security-features__card-image {
  width: 100%;
  height: 250px; /* Consistent height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* No filter */
}

.page-resources-f8bet-security-features__card-title {
  font-size: 1.5em;
  color: #26A9E0; /* Brand color */
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.page-resources-f8bet-security-features__card-description {
  font-size: 1em;
  color: #f0f0f0;
  text-align: center;
}

/* List Styles */
.page-resources-f8bet-security-features__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-resources-f8bet-security-features__list-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.page-resources-f8bet-security-features__list-title {
  font-size: 1.3em;
  color: #26A9E0; /* Brand color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-f8bet-security-features__list-item p {
  color: #f0f0f0;
}

/* Image with Text */
.page-resources-f8bet-security-features__image-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.page-resources-f8bet-security-features__content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  filter: none; /* No filter */
}

/* CTA Buttons */
.page-resources-f8bet-security-features__btn-primary,
.page-resources-f8bet-security-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding/border are included in width */
  max-width: 100%;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-resources-f8bet-security-features__btn-primary {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-f8bet-security-features__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-f8bet-security-features__btn-secondary {
  background-color: transparent;
  color: #26A9E0; /* Brand color */
  border: 2px solid #26A9E0;
}

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

.page-resources-f8bet-security-features__cta-bottom {
  margin-top: 50px;
}

.page-resources-f8bet-security-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* FAQ Section */
.page-resources-f8bet-security-features__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

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

.page-resources-f8bet-security-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #262626;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-f8bet-security-features__faq-question:hover {
  background-color: #333333;
}

.page-resources-f8bet-security-features__faq-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.page-resources-f8bet-security-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

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

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

.page-resources-f8bet-security-features__faq-item.active .page-resources-f8bet-security-features__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-resources-f8bet-security-features__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-f8bet-security-features__hero-title {
    font-size: 2.8em;
  }

  .page-resources-f8bet-security-features__section-title {
    font-size: 2em;
  }

  .page-resources-f8bet-security-features__hero-section {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-resources-f8bet-security-features__hero-section {
    flex-direction: column;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    text-align: center;
  }

  .page-resources-f8bet-security-features__hero-content {
    padding: 15px;
  }

  .page-resources-f8bet-security-features__hero-title {
    font-size: 2.2em;
  }

  .page-resources-f8bet-security-features__hero-description {
    font-size: 1em;
  }

  .page-resources-f8bet-security-features__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-f8bet-security-features__btn-primary,
  .page-resources-f8bet-security-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-f8bet-security-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-f8bet-security-features__content-section,
  .page-resources-f8bet-security-features__feature-section,
  .page-resources-f8bet-security-features__faq-section,
  .page-resources-f8bet-security-features__cta-section {
    padding: 40px 15px;
  }

  .page-resources-f8bet-security-features__container {
    padding: 0 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-f8bet-security-features__section-title {
    font-size: 1.8em;
  }

  .page-resources-f8bet-security-features__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-f8bet-security-features__card-image {
    height: 200px;
  }

  .page-resources-f8bet-security-features__image-with-text {
    flex-direction: column;
  }

  .page-resources-f8bet-security-features__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-f8bet-security-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-f8bet-security-features__list-item {
    padding: 20px;
  }

  .page-resources-f8bet-security-features__faq-question {
    padding: 15px 20px;
  }

  .page-resources-f8bet-security-features__faq-title {
    font-size: 1.1em;
  }

  .page-resources-f8bet-security-features__faq-answer {
    padding: 0 20px;
  }

  .page-resources-f8bet-security-features__faq-item.active .page-resources-f8bet-security-features__faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-f8bet-security-features__hero-title {
    font-size: 1.8em;
  }

  .page-resources-f8bet-security-features__section-title {
    font-size: 1.5em;
  }
}