/* style/index-debet-security-data-protection.css */
.page-index-debet-security-data-protection {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342;
  line-height: 1.6;
}

.page-index-debet-security-data-protection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-debet-security-data-protection__hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}

.page-index-debet-security-data-protection__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-index-debet-security-data-protection__hero-section .page-index-debet-security-data-protection__container {
  position: relative;
  z-index: 1;
}

.page-index-debet-security-data-protection__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-debet-security-data-protection__hero-subtitle {
  font-size: 1.5em;
  color: #CCCCCC; /* Lighter gray for subtitle */
  margin-bottom: 40px;
}

.page-index-debet-security-data-protection__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 0 10px;
  font-size: 1.1em;
}

.page-index-debet-security-data-protection__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-index-debet-security-data-protection__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-2px);
}

.page-index-debet-security-data-protection__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-debet-security-data-protection__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-index-debet-security-data-protection__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-index-debet-security-data-protection__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-debet-security-data-protection__section--dark {
  background-color: #0A2342;
  color: #E0E0E0;
}

.page-index-debet-security-data-protection__section--dark-alt {
  background-color: #1A3F6C; /* Slightly lighter dark blue for contrast */
  color: #E0E0E0;
}

.page-index-debet-security-data-protection__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-debet-security-data-protection__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

.page-index-debet-security-data-protection__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #E0E0E0;
}

.page-index-debet-security-data-protection__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-debet-security-data-protection__feature-item {
  background-color: #1A3F6C; /* Darker blue background for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-debet-security-data-protection__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-debet-security-data-protection__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-debet-security-data-protection__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-debet-security-data-protection__feature-item p {
  color: #E0E0E0;
}

.page-index-debet-security-data-protection__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-index-debet-security-data-protection__content-block--reverse {
  flex-direction: row-reverse;
}

.page-index-debet-security-data-protection__content-text {
  flex: 1;
  min-width: 300px;
}

.page-index-debet-security-data-protection__content-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-debet-security-data-protection__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-debet-security-data-protection__content-text p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-index-debet-security-data-protection__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-debet-security-data-protection__card {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-debet-security-data-protection__card:hover {
  transform: translateY(-10px);
}

.page-index-debet-security-data-protection__card-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 7px #FFD700);
}

.page-index-debet-security-data-protection__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-debet-security-data-protection__card p {
  color: #E0E0E0;
}

.page-index-debet-security-data-protection__responsible-gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-index-debet-security-data-protection__responsible-gaming-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-debet-security-data-protection__responsible-gaming-item:hover {
  transform: translateY(-10px);
}

.page-index-debet-security-data-protection__call-to-action {
  background-color: #1A3F6C;
  padding: 80px 0;
}

.page-index-debet-security-data-protection__call-to-action .page-index-debet-security-data-protection__section-title {
  color: #FFD700;
}

.page-index-debet-security-data-protection__call-to-action .page-index-debet-security-data-protection__text-block {
  margin-bottom: 40px;
}

.page-index-debet-security-data-protection__call-to-action .page-index-debet-security-data-protection__btn {
  margin: 15px;
}

.page-index-debet-security-data-protection .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-debet-security-data-protection__hero-title {
    font-size: 2.5em;
  }

  .page-index-debet-security-data-protection__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-debet-security-data-protection__section-title {
    font-size: 2em;
  }

  .page-index-debet-security-data-protection__sub-title {
    font-size: 1.5em;
  }

  .page-index-debet-security-data-protection__feature-grid,
  .page-index-debet-security-data-protection__card-grid,
  .page-index-debet-security-data-protection__responsible-gaming-grid {
    grid-template-columns: 1fr;
  }

  .page-index-debet-security-data-protection__content-block {
    flex-direction: column;
  }

  .page-index-debet-security-data-protection__content-block--reverse {
    flex-direction: column;
  }

  .page-index-debet-security-data-protection__hero-section {
    padding: 80px 0 40px;
  }

  .page-index-debet-security-data-protection__section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-index-debet-security-data-protection__hero-title {
    font-size: 2em;
  }

  .page-index-debet-security-data-protection__hero-subtitle {
    font-size: 1em;
  }

  .page-index-debet-security-data-protection__section-title {
    font-size: 1.8em;
  }

  .page-index-debet-security-data-protection__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-index-debet-security-data-protection__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-index-debet-security-data-protection__text-block {
    font-size: 1em;
  }
}