.page-deposit-withdrawal-fees {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-deposit-withdrawal-fees__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-deposit-withdrawal-fees__hero {
  background: linear-gradient(135deg, #1A202C, #3A455C);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-fees__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-deposit-withdrawal-fees__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e5dfd3;
}

.page-deposit-withdrawal-fees__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposit-withdrawal-fees__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-deposit-withdrawal-fees__cta-button--bottom {
    margin-top: 40px;
}

.page-deposit-withdrawal-fees__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-deposit-withdrawal-fees__section:last-of-type {
  border-bottom: none;
}

.page-deposit-withdrawal-fees__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-deposit-withdrawal-fees__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-deposit-withdrawal-fees__introduction p,
.page-deposit-withdrawal-fees__deposit-fees p,
.page-deposit-withdrawal-fees__withdrawal-fees p,
.page-deposit-withdrawal-fees__limits-processing p,
.page-deposit-withdrawal-fees__avoid-fees p,
.page-deposit-withdrawal-fees__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-deposit-withdrawal-fees__introduction h3,
.page-deposit-withdrawal-fees__deposit-fees h3,
.page-deposit-withdrawal-fees__withdrawal-fees h3,
.page-deposit-withdrawal-fees__limits-processing h3,
.page-deposit-withdrawal-fees__avoid-fees h3,
.page-deposit-withdrawal-fees__faq h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-fees__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-deposit-withdrawal-fees__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-deposit-withdrawal-fees__grid-item {
  background-color: #2a3342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-fees__grid-item:hover {
  transform: translateY(-5px);
}

.page-deposit-withdrawal-fees__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-deposit-withdrawal-fees__grid-item h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-fees__grid-item p {
  font-size: 1em;
  color: #c0c0c0;
}

.page-deposit-withdrawal-fees__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-deposit-withdrawal-fees__list li {
  background-color: #2a3342;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #e5dfd3;
  font-size: 1.05em;
}

.page-deposit-withdrawal-fees__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1;
}

.page-deposit-withdrawal-fees__faq-item {
  background-color: #2a3342;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-fees__faq-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-deposit-withdrawal-fees__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-fees__faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-deposit-withdrawal-fees__faq-item p {
  font-size: 1.05em;
  color: #c0c0c0;
  margin-top: 0;
  display: none;
}

.page-deposit-withdrawal-fees__faq-item.active p {
  display: block;
}

.page-deposit-withdrawal-fees__disclaimer {
  font-size: 0.9em;
  color: #999;
  text-align: center;
  margin-top: 50px;
}

.page-deposit-withdrawal-fees__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-deposit-withdrawal-fees__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-deposit-withdrawal-fees .highlight {
  color: #FFD700;
}

.page-deposit-withdrawal-fees .strong {
  font-weight: bold;
}

.page-deposit-withdrawal-fees .strong-gold {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-deposit-withdrawal-fees__hero-title {
    font-size: 2.5em;
  }

  .page-deposit-withdrawal-fees__hero-subtitle {
    font-size: 1.2em;
  }

  .page-deposit-withdrawal-fees__section-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-fees__grid {
    grid-template-columns: 1fr;
  }

  .page-deposit-withdrawal-fees__grid-item {
    padding: 25px;
  }

  .page-deposit-withdrawal-fees__faq-item h3 {
    font-size: 1.3em;
  }

  .page-deposit-withdrawal-fees__list li {
    font-size: 1em;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-fees__hero {
    padding: 60px 0;
  }

  .page-deposit-withdrawal-fees__hero-title {
    font-size: 2em;
  }

  .page-deposit-withdrawal-fees__hero-subtitle {
    font-size: 1em;
  }

  .page-deposit-withdrawal-fees__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-deposit-withdrawal-fees__section-title {
    font-size: 1.8em;
  }

  .page-deposit-withdrawal-fees__introduction p,
  .page-deposit-withdrawal-fees__deposit-fees p,
  .page-deposit-withdrawal-fees__withdrawal-fees p,
  .page-deposit-withdrawal-fees__limits-processing p,
  .page-deposit-withdrawal-fees__avoid-fees p,
  .page-deposit-withdrawal-fees__conclusion p {
    font-size: 0.95em;
  }

  .page-deposit-withdrawal-fees__section-title::after {
    width: 60px;
  }

  .page-deposit-withdrawal-fees__faq-item h3 {
    font-size: 1.1em;
  }
}