/* style/deposit-withdrawal-limits-fees.css */
.page-deposit-withdrawal-limits-fees {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-deposit-withdrawal-limits-fees__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-limits-fees__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
}

.page-deposit-withdrawal-limits-fees__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-deposit-withdrawal-limits-fees__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-deposit-withdrawal-limits-fees__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-deposit-withdrawal-limits-fees__section--overview {
  background-color: #f9f9f9;
}

.page-deposit-withdrawal-limits-fees__section--deposit,
.page-deposit-withdrawal-limits-fees__section--withdrawal {
  background-color: #ffffff;
}

.page-deposit-withdrawal-limits-fees__section--regulations {
  background-color: #f0f8ff; /* Light blue tint */
}

.page-deposit-withdrawal-limits-fees__section--tips {
  background-color: #fff8e1; /* Light yellow tint */
}

.page-deposit-withdrawal-limits-fees__section--cta {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-deposit-withdrawal-limits-fees__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-deposit-withdrawal-limits-fees__section--cta .page-deposit-withdrawal-limits-fees__section-title {
  color: #ffffff;
}

.page-deposit-withdrawal-limits-fees__method-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-limits-fees__method-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-deposit-withdrawal-limits-fees__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

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

.page-deposit-withdrawal-limits-fees__list ol {
  list-style: decimal;
}

.page-deposit-withdrawal-limits-fees__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-limits-fees__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-deposit-withdrawal-limits-fees__button--primary {
  background-color: #ffc107;
  color: #000000; /* Ensure high contrast */
}

.page-deposit-withdrawal-limits-fees__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-deposit-withdrawal-limits-fees__button--secondary {
  background-color: #007bff;
  color: #ffffff;
}

.page-deposit-withdrawal-limits-fees__button--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-deposit-withdrawal-limits-fees__button--download {
  background-color: #28a745; /* Green for download */
  color: #ffffff;
}

.page-deposit-withdrawal-limits-fees__button--download:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.page-deposit-withdrawal-limits-fees__button-group {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

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

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

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

  .page-deposit-withdrawal-limits-fees__method-title {
    font-size: 1.4em;
  }

  .page-deposit-withdrawal-limits-fees__button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-deposit-withdrawal-limits-fees__button-group {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

  .page-deposit-withdrawal-limits-fees__method-card {
    padding: 15px;
  }

  .page-deposit-withdrawal-limits-fees__button {
    width: 80%;
    max-width: 250px;
  }
}