/* style/resources-how-to-securely-deposit-withdraw-on88.css */

:root {
  --on88-primary-color: #1A237E;
  --on88-secondary-color: #FFD700;
  --on88-text-light: #ffffff;
  --on88-text-dark: #333333;
  --on88-bg-dark: #121212; /* Body background from shared.css */
}

.page-resources-how-to-securely-deposit-withdraw-on88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--on88-text-light); /* Default text color for dark body background */
  background-color: var(--on88-bg-dark);
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--on88-primary-color) 0%, #000000 100%); /* Using a dark gradient for depth */
  color: var(--on88-text-light);
  overflow: hidden;
  min-height: 600px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--on88-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-securely-deposit-withdraw-on88__btn-primary,
.page-resources-how-to-securely-deposit-withdraw-on88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-how-to-securely-deposit-withdraw-on88__btn-primary {
  background-color: var(--on88-secondary-color);
  color: var(--on88-primary-color);
  border: 2px solid var(--on88-secondary-color);
}

.page-resources-how-to-securely-deposit-withdraw-on88__btn-primary:hover {
  background-color: #e6c200; /* Darken gold */
  border-color: #e6c200;
}

.page-resources-how-to-securely-deposit-withdraw-on88__btn-secondary {
  background-color: transparent;
  color: var(--on88-secondary-color);
  border: 2px solid var(--on88-secondary-color);
}

.page-resources-how-to-securely-deposit-withdraw-on88__btn-secondary:hover {
  background-color: var(--on88-secondary-color);
  color: var(--on88-primary-color);
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-how-to-securely-deposit-withdraw-on88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-resources-how-to-securely-deposit-withdraw-on88__content-section {
  padding: 60px 20px;
  background-color: var(--on88-bg-dark);
  color: var(--on88-text-light);
}

.page-resources-how-to-securely-deposit-withdraw-on88__light-bg {
  background-color: #f0f0f0;
  color: var(--on88-text-dark);
}

.page-resources-how-to-securely-deposit-withdraw-on88__dark-bg {
  background-color: var(--on88-primary-color);
  color: var(--on88-text-light);
}

.page-resources-how-to-securely-deposit-withdraw-on88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__section-title {
  font-size: 2.5em;
  color: var(--on88-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--on88-secondary-color);
  border-radius: 2px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__subsection-title {
  font-size: 1.8em;
  color: var(--on88-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__text-link {
  color: var(--on88-secondary-color);
  text-decoration: underline;
}

.page-resources-how-to-securely-deposit-withdraw-on88__text-link:hover {
  color: #e6c200; /* Lighten gold */
}

.page-resources-how-to-securely-deposit-withdraw-on88__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__numbered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-how-to-securely-deposit-withdraw-on88__image-wrapper {
  margin: 40px auto;
  text-align: center;
  max-width: 1000px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-how-to-securely-deposit-withdraw-on88__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  /* No filter property to change image color */
}

.page-resources-how-to-securely-deposit-withdraw-on88__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-securely-deposit-withdraw-on88__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}