:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --background-color: #FFFFFF;
  --black: #000000;
}

.page-resources-secure-deposit-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-color); /* Default background */
}

/* Hero Section */
.page-resources-secure-deposit-guide__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-secure-deposit-guide__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-resources-secure-deposit-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-resources-secure-deposit-guide__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-resources-secure-deposit-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-secure-deposit-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-resources-secure-deposit-guide__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-resources-secure-deposit-guide__btn-primary,
.page-resources-secure-deposit-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-secure-deposit-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-secure-deposit-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-resources-secure-deposit-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-secure-deposit-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Content Area */
.page-resources-secure-deposit-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text-dark);
}

.page-resources-secure-deposit-guide__section {
  margin-bottom: 60px;
  padding: 20px 0;
}

.page-resources-secure-deposit-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}