.page-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  line-height: 1.6;
  background-color: #0D0E12; /* Background */
}

.page-deposit-withdrawal__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

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

.page-deposit-withdrawal__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-deposit-withdrawal__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-deposit-withdrawal__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-deposit-withdrawal__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFF3E6;
  line-height: 1.2;
}

.page-deposit-withdrawal__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
  opacity: 0.9;
}

.page-deposit-withdrawal__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-deposit-withdrawal__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
  border: none;
}

.page-deposit-withdrawal__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-deposit-withdrawal__cta-button--secondary {
  background: #17191F; /* Card BG */
  border: 2px solid #A84F0C; /* Border */
  box-shadow: none;
}

.page-deposit-withdrawal__cta-button--secondary:hover {
  background: #0D0E12;
  border-color: #FFB04D; /* Glow */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 176, 77, 0.3);
}

.page-deposit-withdrawal__section {
  padding: 80px 20px;
  background-color: #0D0E12; /* Background */
  color: #FFF3E6;
}

.page-deposit-withdrawal__section--intro {
  padding-top: 40px;
}

.page-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-deposit-withdrawal__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #FFB04D; /* Glow */
  position: relative;
}

.page-deposit-withdrawal__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A, #D96800);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-deposit-withdrawal__subtitle {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #FFA53A; /* Auxiliary color */
}

.page-deposit-withdrawal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-deposit-withdrawal__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF3E6;
}

.page-deposit-withdrawal__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 140, 26, 0.5);
}

.page-deposit-withdrawal__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-deposit-withdrawal__card-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFB04D; /* Glow */
}

.page-deposit-withdrawal__card p {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
  opacity: 0.8;
}

.page-deposit-withdrawal__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(255, 140, 26, 0.3);
}

.page-deposit-withdrawal__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 26, 0.5);
}

.page-deposit-withdrawal__steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-deposit-withdrawal__steps li {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal__step-number {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #D96800; /* Deep Orange */
  color: #ffffff;
}

.page-deposit-withdrawal__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-deposit-withdrawal__list li {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-deposit-withdrawal__list li strong {
  color: #FFA53A; /* Auxiliary color */
  font-weight: 700;
}

.page-deposit-withdrawal__list--security li img {
  
  
  object-fit: contain;
  border-radius: 0;
  min-
  min-
}

.page-deposit-withdrawal__section--cta {
  text-align: center;
  padding: 60px 20px;
  background: #17191F; /* Card BG */
  border-top: 1px solid #A84F0C; /* Border */
}

/* FAQ Styles */
details.page-deposit-withdrawal__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
details.page-deposit-withdrawal__faq-item summary.page-deposit-withdrawal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF3E6;
  font-weight: 600;
}
details.page-deposit-withdrawal__faq-item summary.page-deposit-withdrawal__faq-question::-webkit-details-marker {
  display: none;
}
details.page-deposit-withdrawal__faq-item summary.page-deposit-withdrawal__faq-question:hover {
  background: rgba(255, 140, 26, 0.1); /* Slightly lighter hover for brand color */
}
.page-deposit-withdrawal__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFB04D; /* Glow */
}
.page-deposit-withdrawal__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-deposit-withdrawal__faq-item .page-deposit-withdrawal__faq-answer {
  padding: 0 20px 20px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 12px 12px;
  color: #FFF3E6;
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-deposit-withdrawal__main-title {
    font-size: 2.8em;
  }
  .page-deposit-withdrawal__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-deposit-withdrawal {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-deposit-withdrawal__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-deposit-withdrawal__hero-image img {
    border-radius: 4px;
  }
  .page-deposit-withdrawal__main-title {
    font-size: 2.2em;
  }
  .page-deposit-withdrawal__description {
    font-size: 1em;
  }
  .page-deposit-withdrawal__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-deposit-withdrawal__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-deposit-withdrawal__section {
    padding: 50px 15px;
  }
  .page-deposit-withdrawal__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-deposit-withdrawal__subtitle {
    font-size: 1.5em;
  }
  .page-deposit-withdrawal__grid {
    grid-template-columns: 1fr;
  }
  .page-deposit-withdrawal__card {
    padding: 20px;
  }
  .page-deposit-withdrawal__card img {
    height: 200px;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-deposit-withdrawal__card-title {
    font-size: 1.3em;
  }
  .page-deposit-withdrawal__steps li,
  .page-deposit-withdrawal__list li {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-deposit-withdrawal__step-number {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .page-deposit-withdrawal__list--security li img {
    margin-bottom: 10px;
  }
  details.page-deposit-withdrawal__faq-item summary.page-deposit-withdrawal__faq-question { padding: 15px; }
  .page-deposit-withdrawal__faq-qtext { font-size: 1em; }
  .page-deposit-withdrawal__faq-answer { padding: 0 15px 15px; }
  .page-deposit-withdrawal img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-deposit-withdrawal__section,
  .page-deposit-withdrawal__card,
  .page-deposit-withdrawal__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}