/* style/resources-deposit-withdrawal-guide.css */
.page-resources-deposit-withdrawal-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: #1a1a2e; /* Inherited from shared, but for clarity */
}

.page-resources-deposit-withdrawal-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-deposit-withdrawal-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-deposit-withdrawal-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #017439; /* Brand primary color for hero background */
  overflow: hidden;
}

.page-resources-deposit-withdrawal-guide__hero-section .page-resources-deposit-withdrawal-guide__container {
  position: relative;
  z-index: 2;
}

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

.page-resources-deposit-withdrawal-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-deposit-withdrawal-guide__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-deposit-withdrawal-guide__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-resources-deposit-withdrawal-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-guide__sub-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #017439;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-deposit-withdrawal-guide__card {
  background-color: #ffffff; /* Light background for cards */
  color: #333333; /* Dark text for light card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__card:hover {
  transform: translateY(-5px);
}

.page-resources-deposit-withdrawal-guide__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-guide__card-sub-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #017439;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-guide__card-text {
  font-size: 1em;
  color: #333333;
}

.page-resources-deposit-withdrawal-guide__list {
  list-style: disc inside;
  text-align: left;
  margin: 20px auto;
  max-width: 900px;
  color: #f0f0f0;
  padding-left: 20px;
}

.page-resources-deposit-withdrawal-guide__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-deposit-withdrawal-guide__list--large-spacing li {
  margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-guide__dark-bg {
  background-color: #1a1a2e; /* Dark background for sections */
  color: #ffffff;
}

.page-resources-deposit-withdrawal-guide__light-bg {
  background-color: #ffffff; /* Light background for cards/elements */
  color: #333333;
}

.page-resources-deposit-withdrawal-guide__deposit-guide-section .page-resources-deposit-withdrawal-guide__sub-title,
.page-resources-deposit-withdrawal-guide__withdrawal-guide-section .page-resources-deposit-withdrawal-guide__sub-title {
  color: #ffffff; /* White text for sub-titles in dark sections */
}

.page-resources-deposit-withdrawal-guide__deposit-guide-section .page-resources-deposit-withdrawal-guide__list,
.page-resources-deposit-withdrawal-guide__withdrawal-guide-section .page-resources-deposit-withdrawal-guide__list {
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-guide__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}