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

/* Base styles for the page content */
.page-payment-methods-deposit-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Default background */
}

/* Ensure main content is not covered by fixed header */
/* body { padding-top: var(--header-offset); } is handled in shared.css */

/* 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;
  color: #ffffff;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #26A9E0;
  overflow: hidden;
}

.page-payment-methods-deposit-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-payment-methods-deposit-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-payment-methods-deposit-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods-deposit-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-payment-methods-deposit-guide__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-payment-methods-deposit-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-payment-methods-deposit-guide__section {
  padding: 60px 20px;
}

.page-payment-methods-deposit-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-payment-methods-deposit-guide__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* Feature Grid */
.page-payment-methods-deposit-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-deposit-guide__feature-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods-deposit-guide__feature-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* Method Cards */
.page-payment-methods-deposit-guide__method-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__method-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-payment-methods-deposit-guide__method-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__method-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__method-list {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 0.95rem;
}

.page-payment-methods-deposit-guide__method-list li {
  margin-bottom: 8px;
}

/* Steps Grid */
.page-payment-methods-deposit-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-deposit-guide__step-number {
  width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.page-payment-methods-deposit-guide__step-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__step-card p a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__step-card p a:hover {
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__image-block {
  margin-top: 40px;
  text-align: center;
}

.page-payment-methods-deposit-guide__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-payment-methods-deposit-guide__image-caption {
  font-style: italic;
  color: #555555;
  margin-top: 10px;
}

/* Bullet List */
.page-payment-methods-deposit-guide__bullet-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1rem;
}

.page-payment-methods-deposit-guide__bullet-list li {
  margin-bottom: 15px;
  text-align: justify;
}

.page-payment-methods-deposit-guide__bullet-list li strong {
  color: #26A9E0;
}

.page-payment-methods-deposit-guide__info-box {
  background-color: #e6f7ff; /* Light blue background */
  border-left: 5px solid #26A9E0;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__info-box p {
  margin: 0;
  font-style: italic;
  color: #333333;
}

/* FAQ List */
.page-payment-methods-deposit-guide__faq-list {
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-payment-methods-deposit-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-payment-methods-deposit-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-payment-methods-deposit-guide__faq-item[open] > .page-payment-methods-deposit-guide__faq-question {
  background-color: #e6f7ff;
}

.page-payment-methods-deposit-guide__faq-qtext {
  flex-grow: 1;
}

.page-payment-methods-deposit-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-payment-methods-deposit-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

/* Security List */
.page-payment-methods-deposit-guide__security-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-payment-methods-deposit-guide__security-list li {
  background-color: #f9f9f9;
  border-left: 4px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: justify;
}

.page-payment-methods-deposit-guide__security-list li strong {
  color: #26A9E0;
}

/* CTA Box */
.page-payment-methods-deposit-guide__cta-box {
  background-color: #e6f7ff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #26A9E0;
}

.page-payment-methods-deposit-guide__cta-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #333333;
  font-weight: bold;
}

/* Final CTA Section */
.page-payment-methods-deposit-guide__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

/* Buttons */
.page-payment-methods-deposit-guide__btn-primary,
.page-payment-methods-deposit-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-deposit-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-payment-methods-deposit-guide__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-payment-methods-deposit-guide__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-payment-methods-deposit-guide__btn-secondary:hover {
  background-color: #e6f7ff;
  color: #1e87b8;
  border-color: #1e87b8;
}

/* Specific Color Overrides */
.page-payment-methods-deposit-guide__btn-login {
  background-color: #EA7C07;
  border-color: #EA7C07;
  color: #ffffff;
}

.page-payment-methods-deposit-guide__btn-login:hover {
  background-color: #d86a00;
  border-color: #d86a00;
}

/* Background colors for contrast */
.page-payment-methods-deposit-guide__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-payment-methods-deposit-guide__dark-section .page-payment-methods-deposit-guide__section-title,
.page-payment-methods-deposit-guide__dark-section .page-payment-methods-deposit-guide__text-block,
.page-payment-methods-deposit-guide__dark-section .page-payment-methods-deposit-guide__step-title {
  color: #ffffff;
}

.page-payment-methods-deposit-guide__dark-section .page-payment-methods-deposit-guide__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-payment-methods-deposit-guide__dark-section .page-payment-methods-deposit-guide__step-number {
  background-color: #ffffff;
  color: #26A9E0;
}

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

/* Images within content area must adhere to min size */
.page-payment-methods-deposit-guide img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensure images fill their space properly */
  display: block; /* Prevent extra space below images */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods-deposit-guide__hero-section,
  .page-payment-methods-deposit-guide__section {
    padding: 40px 15px;
  }

  .page-payment-methods-deposit-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-payment-methods-deposit-guide__intro-text {
    font-size: 1rem;
  }

  /* Images responsive */
  .page-payment-methods-deposit-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset; /* Allow smaller display sizes on mobile if needed, but still above 200px from content */
    min-height: unset;
  }

  .page-payment-methods-deposit-guide__hero-image-wrapper,
  .page-payment-methods-deposit-guide__image-block,
  .page-payment-methods-deposit-guide__method-card,
  .page-payment-methods-deposit-guide__feature-card,
  .page-payment-methods-deposit-guide__step-card,
  .page-payment-methods-deposit-guide__faq-item,
  .page-payment-methods-deposit-guide__cta-box,
  .page-payment-methods-deposit-guide__info-box,
  .page-payment-methods-deposit-guide__security-list li,
  .page-payment-methods-deposit-guide__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-payment-methods-deposit-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods-deposit-guide__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary,
  .page-payment-methods-deposit-guide a[class*="button"],
  .page-payment-methods-deposit-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods-deposit-guide__method-list,
  .page-payment-methods-deposit-guide__bullet-list {
    margin-left: 15px;
  }
  
  .page-payment-methods-deposit-guide__hero-image {
    filter: brightness(0.6); /* Slightly less dark for smaller screens */
  }
}