.page-deposit-withdrawal-processing-times {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for readability on light backgrounds */
  background-color: #f8f9fa;
}

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

.page-deposit-withdrawal-processing-times__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Betting Blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-deposit-withdrawal-processing-times__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFCC00; /* Wealth Gold for title */
  font-weight: bold;
}

.page-deposit-withdrawal-processing-times__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-deposit-withdrawal-processing-times__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Wealth Gold */
  color: #003366; /* Betting Blue for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposit-withdrawal-processing-times__cta-button:hover {
  background-color: #e6b800; /* Darker Wealth Gold on hover */
  color: #002244; /* Darker Betting Blue on hover */
}

.page-deposit-withdrawal-processing-times__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-deposit-withdrawal-processing-times__cta-button--secondary {
  background-color: #003366; /* Betting Blue */
  color: #FFCC00; /* Wealth Gold for text */
  border: 1px solid #FFCC00;
}

.page-deposit-withdrawal-processing-times__cta-button--secondary:hover {
  background-color: #002244; /* Darker Betting Blue */
  color: #ffe066; /* Lighter Wealth Gold */
}

.page-deposit-withdrawal-processing-times__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-deposit-withdrawal-processing-times__section-title {
  font-size: 2.2em;
  color: #003366; /* Betting Blue */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-deposit-withdrawal-processing-times__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Wealth Gold accent */
  border-radius: 2px;
}

.page-deposit-withdrawal-processing-times__sub-title {
  font-size: 1.8em;
  color: #003366; /* Betting Blue */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-processing-times__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444444;
}

.page-deposit-withdrawal-processing-times__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-deposit-withdrawal-processing-times__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-processing-times__transaction-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: #fefefe;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.page-deposit-withdrawal-processing-times__transaction-table th,
.page-deposit-withdrawal-processing-times__transaction-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}

.page-deposit-withdrawal-processing-times__transaction-table th {
  background-color: #003366; /* Betting Blue */
  color: #FFCC00; /* Wealth Gold */
  font-weight: bold;
  font-size: 1.1em;
}

.page-deposit-withdrawal-processing-times__transaction-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.page-deposit-withdrawal-processing-times__transaction-table tbody tr:hover {
  background-color: #e6f7ff; /* Light blue on hover */
}

.page-deposit-withdrawal-processing-times__note {
  background-color: #fff3e0; /* Light orange for notes */
  border-left: 5px solid #ff9800; /* Orange accent */
  padding: 15px 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555555;
  border-radius: 4px;
}

.page-deposit-withdrawal-processing-times__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-deposit-withdrawal-processing-times__list li {
  margin-bottom: 10px;
}

.page-deposit-withdrawal-processing-times__related-info {
  background-color: #f0f4f7;
  padding: 50px 0;
  text-align: center;
}

.page-deposit-withdrawal-processing-times__related-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-deposit-withdrawal-processing-times__link-item {
  display: inline-block;
  background-color: #003366; /* Betting Blue */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-processing-times__link-item:hover {
  background-color: #004d99; /* Lighter Betting Blue on hover */
}

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

  .page-deposit-withdrawal-processing-times__hero-description {
    font-size: 1em;
  }

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

  .page-deposit-withdrawal-processing-times__sub-title {
    font-size: 1.5em;
  }

  .page-deposit-withdrawal-processing-times__transaction-table th,
  .page-deposit-withdrawal-processing-times__transaction-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-deposit-withdrawal-processing-times__table-responsive {
    overflow-x: auto;
  }
  
  .page-deposit-withdrawal-processing-times__related-links {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-deposit-withdrawal-processing-times__hero-title {
    font-size: 1.6em;
  }

  .page-deposit-withdrawal-processing-times__section-title {
    font-size: 1.5em;
  }

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

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

  .page-deposit-withdrawal-processing-times__content-section p,
  .page-deposit-withdrawal-processing-times__list li {
    font-size: 0.95em;
  }
}