/* style/resources-f1686-registration-deposit-guide.css */
.page-resources-f1686-registration-deposit-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--dark-bg-1); /* This is the body background, sections will override */
}

.page-resources-f1686-registration-deposit-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

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

.page-resources-f1686-registration-deposit-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-f1686-registration-deposit-guide__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
}

.page-resources-f1686-registration-deposit-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-f1686-registration-deposit-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-resources-f1686-registration-deposit-guide__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-f1686-registration-deposit-guide__btn-primary:hover {
  background-color: #1a8cc7;
}

.page-resources-f1686-registration-deposit-guide__btn-secondary {
  display: inline-block;
  background-color: #FFFFFF;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-resources-f1686-registration-deposit-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-f1686-registration-deposit-guide__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF; /* Light background for content sections */
  color: #333333;
}

.page-resources-f1686-registration-deposit-guide__dark-bg {
  background-color: #F8F8F8; /* Slightly off-white for contrast with pure white sections */
  color: #333333;
}

.page-resources-f1686-registration-deposit-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}