/* style/deposit-withdrawal-fees.css */
.page-deposit-withdrawal-fees {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-deposit-withdrawal-fees__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A2F4A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  border-bottom: 2px solid #FFD700;
}

.page-deposit-withdrawal-fees__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-deposit-withdrawal-fees__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0; /* Off-white */
}

.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.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-deposit-withdrawal-fees__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-deposit-withdrawal-fees__subsection-title {
  font-size: 2em;
  color: #FFD700; /* Gold */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-deposit-withdrawal-fees p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light grey */
}

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

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

.page-deposit-withdrawal-fees__list li {
  background-color: #1A2F4A; /* Slightly lighter dark blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #F0F0F0; /* Off-white */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

.page-deposit-withdrawal-fees__list--grid li {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-deposit-withdrawal-fees__list--grid li::before {
  margin-bottom: 10px;
}

.page-deposit-withdrawal-fees__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
  text-align: center;
}

.page-deposit-withdrawal-fees__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-deposit-withdrawal-fees__btn--primary:hover {
  background-color: #E6C200; /* Darker gold */
  transform: translateY(-3px);
}

.page-deposit-withdrawal-fees__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-deposit-withdrawal-fees__btn--secondary:hover {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  transform: translateY(-3px);
}

.page-deposit-withdrawal-fees__cta-box {
  background-color: #1A2F4A; /* Lighter dark blue */
  border-left: 5px solid #FFD700;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-fees__cta-box p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #F0F0F0;
}

.page-deposit-withdrawal-fees__cta-final {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #1A2F4A;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-fees__cta-final p {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-deposit-withdrawal-fees__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 3px solid #FFD700;
}

/* Responsive adjustments */
@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__subsection-title {
    font-size: 1.5em;
  }

  .page-deposit-withdrawal-fees__list li,
  .page-deposit-withdrawal-fees p {
    font-size: 1em;
  }

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

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

  .page-deposit-withdrawal-fees__cta-final p {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-fees__hero-title {
    font-size: 2em;
  }

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

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

  .page-deposit-withdrawal-fees__subsection-title {
    font-size: 1.3em;
  }

  .page-deposit-withdrawal-fees__btn {
    display: block;
    margin: 10px auto;
    width: 90%;
  }

  .page-deposit-withdrawal-fees__list li {
    padding: 12px 15px;
  }
}