/* style/resources-deposit-withdrawal-methods.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-resources-deposit-withdrawal-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-deposit-withdrawal-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-deposit-withdrawal-methods__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-methods__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-methods__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-deposit-withdrawal-methods__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-methods__list li {
  margin-bottom: 10px;
}

/* Hero Section */
.page-resources-deposit-withdrawal-methods__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); /* Ensure content is below header */
}

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

.page-resources-deposit-withdrawal-methods__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-deposit-withdrawal-methods__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-resources-deposit-withdrawal-methods__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-deposit-withdrawal-methods__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* CTA Button */
.page-resources-deposit-withdrawal-methods__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-deposit-withdrawal-methods__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-deposit-withdrawal-methods__btn-primary:hover {
  background-color: #1a7fb3;
  transform: translateY(-2px);
}

/* Content Sections */
.page-resources-deposit-withdrawal-methods__content-section {
  padding: 60px 0;
}

.page-resources-deposit-withdrawal-methods__light-bg {
  background-color: #0a0a0a; /* Dark body background, so section background should be dark too or transparent */
  color: #ffffff;
}

.page-resources-deposit-withdrawal-methods__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

/* Feature Grid */
.page-resources-deposit-withdrawal-methods__feature-grid,
.page-resources-deposit-withdrawal-methods__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-resources-deposit-withdrawal-methods__feature-item,
.page-resources-deposit-withdrawal-methods__method-item {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-methods__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  color: #ffffff;
}

.page-resources-deposit-withdrawal-methods__feature-title,
.page-resources-deposit-withdrawal-methods__method-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-methods__feature-text,
.page-resources-deposit-withdrawal-methods__method-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Images within content */
.page-resources-deposit-withdrawal-methods__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Method Steps */
.page-resources-deposit-withdrawal-methods__method-steps {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-deposit-withdrawal-methods__method-steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-methods__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-resources-deposit-withdrawal-methods__note {
  font-style: italic;
  color: #FFD700; /* Gold color for notes */
  margin-top: 20px;
  padding: 10px;
  border-left: 4px solid #FFD700;
  background-color: rgba(255, 215, 0, 0.1);
}

/* FAQ Section */
.page-resources-deposit-withdrawal-methods__faq-list {
  margin-top: 30px;
}

.page-resources-deposit-withdrawal-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(38, 169, 224, 0.2); /* Lighter brand color for question background */
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-deposit-withdrawal-methods__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.4);
}

.page-resources-deposit-withdrawal-methods__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.1em; /* Ensure title is readable */
}

.page-resources-deposit-withdrawal-methods__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-deposit-withdrawal-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Very light transparent white for answer background */
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-deposit-withdrawal-methods__faq-answer p {
  margin: 0;
  padding: 15px 0;
}

.page-resources-deposit-withdrawal-methods__faq-item.active .page-resources-deposit-withdrawal-methods__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 20px;
}

.page-resources-deposit-withdrawal-methods__faq-item.active .page-resources-deposit-withdrawal-methods__faq-toggle {
  transform: rotate(45deg);
}

/* Tips List */
.page-resources-deposit-withdrawal-methods__tips-list {
  list-style: none;
  padding: 0;
}

.page-resources-deposit-withdrawal-methods__tips-list li {
  background-color: rgba(38, 169, 224, 0.1);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #26A9E0;
  border-radius: 4px;
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-methods__tips-list li strong {
  color: #26A9E0;
}

/* Call to Action Content */
.page-resources-deposit-withdrawal-methods__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-deposit-withdrawal-methods__hero-title {
    font-size: 2.8em;
  }
  .page-resources-deposit-withdrawal-methods__hero-description {
    font-size: 1.1em;
  }
  .page-resources-deposit-withdrawal-methods__section-title {
    font-size: 2em;
  }
  .page-resources-deposit-withdrawal-methods__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-deposit-withdrawal-methods__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below header on mobile */
  }
  .page-resources-deposit-withdrawal-methods__hero-title {
    font-size: 2em;
  }
  .page-resources-deposit-withdrawal-methods__hero-description {
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-methods__section-title {
    font-size: 1.8em;
  }
  .page-resources-deposit-withdrawal-methods__sub-title {
    font-size: 1.4em;
  }
  .page-resources-deposit-withdrawal-methods__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  
  /* Mobile image responsiveness */
  .page-resources-deposit-withdrawal-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Allow smaller width on mobile */
    min-height: unset !important; /* Allow smaller height on mobile */
  }
  
  /* Mobile button responsiveness */
  .page-resources-deposit-withdrawal-methods__cta-button,
  .page-resources-deposit-withdrawal-methods__btn-primary,
  .page-resources-deposit-withdrawal-methods__btn-secondary,
  .page-resources-deposit-withdrawal-methods a[class*="button"],
  .page-resources-deposit-withdrawal-methods 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-resources-deposit-withdrawal-methods__cta-buttons,
  .page-resources-deposit-withdrawal-methods__button-group,
  .page-resources-deposit-withdrawal-methods__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-resources-deposit-withdrawal-methods__content-section,
  .page-resources-deposit-withdrawal-methods__container,
  .page-resources-deposit-withdrawal-methods__hero-section,
  .page-resources-deposit-withdrawal-methods__faq-section,
  .page-resources-deposit-withdrawal-methods__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .page-resources-deposit-withdrawal-methods__feature-grid,
  .page-resources-deposit-withdrawal-methods__method-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure min-width 200px for content images, but responsive on mobile */
.page-resources-deposit-withdrawal-methods__image:not(.page-resources-deposit-withdrawal-methods__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast fixes for dark background */
.page-resources-deposit-withdrawal-methods__card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-resources-deposit-withdrawal-methods__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-deposit-withdrawal-methods__light-bg {
  background-color: #0a0a0a; /* This section background is same as body, ensure text is light */
  color: #ffffff;
}

.page-resources-deposit-withdrawal-methods p,
.page-resources-deposit-withdrawal-methods li {
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-methods__section-title,
.page-resources-deposit-withdrawal-methods__sub-title,
.page-resources-deposit-withdrawal-methods__feature-title,
.page-resources-deposit-withdrawal-methods__method-title {
  color: #26A9E0;
}

.page-resources-deposit-withdrawal-methods__faq-question {
  background-color: rgba(38, 169, 224, 0.2);
  color: #ffffff;
}

.page-resources-deposit-withdrawal-methods__faq-item.active .page-resources-deposit-withdrawal-methods__faq-answer {
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

.page-resources-deposit-withdrawal-methods__tips-list li {
  background-color: rgba(38, 169, 224, 0.1);
  color: #f0f0f0;
}