/* style/resources-w88-fast-deposits-withdrawals-guide.css */
.page-resources-w88-fast-deposits-withdrawals-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-w88-fast-deposits-withdrawals-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-w88-fast-deposits-withdrawals-guide__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #0a0a0a; /* Match body background for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
}

.page-resources-w88-fast-deposits-withdrawals-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-w88-fast-deposits-withdrawals-guide__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-w88-fast-deposits-withdrawals-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-w88-fast-deposits-withdrawals-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
}

/* Section titles and descriptions */
.page-resources-w88-fast-deposits-withdrawals-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Buttons */
.page-resources-w88-fast-deposits-withdrawals-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-w88-fast-deposits-withdrawals-guide__btn-primary,
.page-resources-w88-fast-deposits-withdrawals-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-resources-w88-fast-deposits-withdrawals-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-w88-fast-deposits-withdrawals-guide__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-w88-fast-deposits-withdrawals-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-w88-fast-deposits-withdrawals-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* General Section Styling */
.page-resources-w88-fast-deposits-withdrawals-guide__why-section,
.page-resources-w88-fast-deposits-withdrawals-guide__deposit-guide,
.page-resources-w88-fast-deposits-withdrawals-guide__withdrawal-guide,
.page-resources-w88-fast-deposits-withdrawals-guide__tips-section,
.page-resources-w88-fast-deposits-withdrawals-guide__security-section,
.page-resources-w88-fast-deposits-withdrawals-guide__support-section,
.page-resources-w88-fast-deposits-withdrawals-guide__faq-section,
.page-resources-w88-fast-deposits-withdrawals-guide__cta-bottom {
  padding: 60px 0;
}

.page-resources-w88-fast-deposits-withdrawals-guide__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-resources-w88-fast-deposits-withdrawals-guide__dark-bg {
  background-color: #0a0a0a; /* Darkest background */
  color: #ffffff;
}

/* Feature List */
.page-resources-w88-fast-deposits-withdrawals-guide__feature-list,
.page-resources-w88-fast-deposits-withdrawals-guide__tip-list,
.page-resources-w88-fast-deposits-withdrawals-guide__security-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__feature-item,
.page-resources-w88-fast-deposits-withdrawals-guide__tip-item,
.page-resources-w88-fast-deposits-withdrawals-guide__security-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for card effect */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-w88-fast-deposits-withdrawals-guide__feature-title,
.page-resources-w88-fast-deposits-withdrawals-guide__tip-title,
.page-resources-w88-fast-deposits-withdrawals-guide__security-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__feature-item p,
.page-resources-w88-fast-deposits-withdrawals-guide__tip-item p,
.page-resources-w88-fast-deposits-withdrawals-guide__security-item p {
  color: #f0f0f0;
}

/* Image blocks */
.page-resources-w88-fast-deposits-withdrawals-guide__image-block {
  margin: 50px auto;
  text-align: center;
}

.page-resources-w88-fast-deposits-withdrawals-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves like a block element for max-width */
  margin: 0 auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Steps Grid */
.page-resources-w88-fast-deposits-withdrawals-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-w88-fast-deposits-withdrawals-guide__step-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__step-card p {
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__step-card ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #f0f0f0;
}

.page-resources-w88-fast-deposits-withdrawals-guide__step-card li {
  margin-bottom: 5px;
  color: #f0f0f0;
}

/* Contact Info */
.page-resources-w88-fast-deposits-withdrawals-guide__contact-info {
  margin-top: 40px;
  text-align: center;
  color: #f0f0f0;
}

.page-resources-w88-fast-deposits-withdrawals-guide__contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-resources-w88-fast-deposits-withdrawals-guide__contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: inline-block; /* Center the list */
  text-align: left;
}

.page-resources-w88-fast-deposits-withdrawals-guide__contact-info li {
  margin-bottom: 8px;
  font-size: 1em;
}

/* FAQ Section */
.page-resources-w88-fast-deposits-withdrawals-guide__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-resources-w88-fast-deposits-withdrawals-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}