/* style/payment-methods-deposit-guide.css */

/* General Styles */
.page-payment-methods-deposit-guide {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
}

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

.page-payment-methods-deposit-guide__container--center {
  text-align: center;
}

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

.page-payment-methods-deposit-guide__section-title {
  font-size: 32px;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__section-title--light {
  color: #FFFFFF; /* White for dark backgrounds */
}

.page-payment-methods-deposit-guide__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods-deposit-guide__paragraph--light {
  color: #e0e0e0; /* Light text for dark backgrounds */
  text-align: justify;
}

.page-payment-methods-deposit-guide__paragraph--highlight {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-top: 30px;
  color: #017439; /* Highlight color for light background */
}

.page-payment-methods-deposit-guide__dark-bg .page-payment-methods-deposit-guide__paragraph--highlight {
  color: #FFFF00; /* Highlight color for dark background */
}

/* Color Scheme */
.page-payment-methods-deposit-guide__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
}

.page-payment-methods-deposit-guide__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

/* 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;
  background: linear-gradient(135deg, #017439, #004d27); /* Darker gradient for hero */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden; /* Ensure no image overflow */
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-payment-methods-deposit-guide__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-payment-methods-deposit-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-payment-methods-deposit-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* Ensure button fits container */
  box-sizing: border-box; /* Include padding in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-payment-methods-deposit-guide__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-payment-methods-deposit-guide__btn-primary:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-guide__btn-secondary {
  background: #017439; /* Main brand color */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-payment-methods-deposit-guide__btn-secondary:hover {
  background: #005f31;
  border-color: #005f31;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Methods Overview Section */
.page-payment-methods-deposit-guide__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}