.page-payment-methods-deposit-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css defines body */
}

.page-payment-methods-deposit-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-payment-methods-deposit-guide__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-payment-methods-deposit-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-payment-methods-deposit-guide__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); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
}

.page-payment-methods-deposit-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-payment-methods-deposit-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1000px; /* Limit hero image width for better readability */
}

.page-payment-methods-deposit-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-payment-methods-deposit-guide__main-title {
  font-size: 44px;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-payment-methods-deposit-guide__description {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-payment-methods-deposit-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0; /* Main brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-payment-methods-deposit-guide__cta-button:hover {
  background: #1e87b8; /* Slightly darker on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 169, 224, 0.6);
}

/* General Section Styling */
.page-payment-methods-deposit-guide__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-payment-methods-deposit-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #26A9E0;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}