/* style/resources-89win-1-deposit-withdrawal.css */
.page-resources-89win-1-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Body background color from shared.css */
}

.page-resources-89win-1-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-89win-1-deposit-withdrawal__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-resources-89win-1-deposit-withdrawal__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-89win-1-deposit-withdrawal__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-89win-1-deposit-withdrawal__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-resources-89win-1-deposit-withdrawal__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-89win-1-deposit-withdrawal__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-89win-1-deposit-withdrawal__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-89win-1-deposit-withdrawal__btn-primary,
.page-resources-89win-1-deposit-withdrawal__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;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* For mobile responsiveness */
  word-wrap: break-word; /* For mobile responsiveness */
}

.page-resources-89win-1-deposit-withdrawal__btn-primary {
  background-color: #017439; /* Brand primary */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-89win-1-deposit-withdrawal__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

.page-resources-89win-1-deposit-withdrawal__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-89win-1-deposit-withdrawal__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Section Common Styles */
.page-resources-89win-1-deposit-withdrawal__intro-section,
.page-resources-89win-1-deposit-withdrawal__deposit-guide,
.page-resources-89win-1-deposit-withdrawal__withdrawal-guide,
.page-resources-89win-1-deposit-withdrawal__tips-section,
.page-resources-89win-1-deposit-withdrawal__faq-section,
.page-resources-89win-1-deposit-withdrawal__cta-final {
  padding: 60px 0;
}

.page-resources-89win-1-deposit-withdrawal__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #ffffff; /* Default for dark background */
}

.page-resources-89win-1-deposit-withdrawal__section-title--dark {
  color: #333333; /* For sections with light background */
}

.page-resources-89win-1-deposit-withdrawal__subsection-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #017439; /* Brand primary for subheadings */
}

.page-resources-89win-1-deposit-withdrawal__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Default for dark background */
}

.page-resources-89win-1-deposit-withdrawal__text-block--dark {
  color: #333333; /* For sections with light background */
}

.page-resources-89win-1-deposit-withdrawal__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-89win-1-deposit-withdrawal__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-89win-1-deposit-withdrawal__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 10px;
}

.page-resources-89win-1-deposit-withdrawal__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0; /* Default for dark background */
}

.page-resources-89win-1-deposit-withdrawal__list-item--dark {
  color: #333333; /* For list items in light sections */
}

.page-resources-89win-1-deposit-withdrawal__list-item a {
  color: #a0ff90; /* Lighter green for links on dark background */
  text-decoration: underline;
}

.page-resources-89win-1-deposit-withdrawal__list-item a:hover {
  color: #ffffff;
}

/* Background specific styles */
.page-resources-89win-1-deposit-withdrawal__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-89win-1-deposit-withdrawal__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-89win-1-deposit-withdrawal__light-bg .page-resources-89win-1-deposit-withdrawal__subsection-title {
  color: #017439;
}

.page-resources-89win-1-deposit-withdrawal__light-bg .page-resources-89win-1-deposit-withdrawal__list-item {
  color: #333333;
}

.page-resources-89win-1-deposit-withdrawal__light-bg .page-resources-89win-1-deposit-withdrawal__list-item a {
  color: #017439;
}

.page-resources-89win-1-deposit-withdrawal__light-bg .page-resources-89win-1-deposit-withdrawal__list-item a:hover {
  color: #005f2c;
}

/* Image styles */
.page-resources-89win-1-deposit-withdrawal__image-wrapper {
  text-align: center;
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-89win-1-deposit-withdrawal__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}