/* style/resources-win55-deposit-withdrawal-methods.css */
.page-resources-win55-deposit-withdrawal-methods {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-resources-win55-deposit-withdrawal-methods__hero {
  background: linear-gradient(135deg, #1A2B4C, #3A506B);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-win55-deposit-withdrawal-methods__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-win55-deposit-withdrawal-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.page-resources-win55-deposit-withdrawal-methods__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-win55-deposit-withdrawal-methods__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-win55-deposit-withdrawal-methods__hero-btn:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-win55-deposit-withdrawal-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-resources-win55-deposit-withdrawal-methods__section {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-resources-win55-deposit-withdrawal-methods__section:last-of-type {
  border-bottom: none;
}

.page-resources-win55-deposit-withdrawal-methods__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-win55-deposit-withdrawal-methods__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-win55-deposit-withdrawal-methods__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-resources-win55-deposit-withdrawal-methods__method-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-win55-deposit-withdrawal-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-win55-deposit-withdrawal-methods__method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-resources-win55-deposit-withdrawal-methods__method-title {
  font-size: 1.6em;
  color: #1A2B4C;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-win55-deposit-withdrawal-methods__method-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-win55-deposit-withdrawal-methods__method-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #444;
  font-size: 0.95em;
  text-align: left;
}

.page-resources-win55-deposit-withdrawal-methods__method-details li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.page-resources-win55-deposit-withdrawal-methods__method-details li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-resources-win55-deposit-withdrawal-methods__method-btn {
  display: inline-block;
  background-color: #1A2B4C;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-resources-win55-deposit-withdrawal-methods__method-btn:hover {
  background-color: #3A506B;
  transform: translateY(-2px);
}

.page-resources-win55-deposit-withdrawal-methods__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-resources-win55-deposit-withdrawal-methods__steps-list li {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-resources-win55-deposit-withdrawal-methods__steps-list li strong {
  color: #1A2B4C;
  font-size: 1.2em;
  display: block;
  margin-bottom: 8px;
}

.page-resources-win55-deposit-withdrawal-methods__process-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-win55-deposit-withdrawal-methods__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-resources-win55-deposit-withdrawal-methods__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 10px;
}

.page-resources-win55-deposit-withdrawal-methods__cta-btn:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-win55-deposit-withdrawal-methods__cta-btn--secondary {
  background-color: #1A2B4C;
  color: #FFD700;
}

.page-resources-win55-deposit-withdrawal-methods__cta-btn--secondary:hover {
  background-color: #3A506B;
}

.page-resources-win55-deposit-withdrawal-methods__notes-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-resources-win55-deposit-withdrawal-methods__notes-list li {
  background-color: #fefefe;
  border: 1px solid #eee;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 1em;
  color: #444;
}

.page-resources-win55-deposit-withdrawal-methods__notes-list li strong {
  color: #1A2B4C;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-resources-win55-deposit-withdrawal-methods__notes-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-win55-deposit-withdrawal-methods__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.page-resources-win55-deposit-withdrawal-methods__faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-win55-deposit-withdrawal-methods__faq-question {
  font-size: 1.3em;
  color: #1A2B4C;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-win55-deposit-withdrawal-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-win55-deposit-withdrawal-methods__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-win55-deposit-withdrawal-methods__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-resources-win55-deposit-withdrawal-methods__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

.page-resources-win55-deposit-withdrawal-methods__cta-final {
  background-color: #1A2B4C;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-resources-win55-deposit-withdrawal-methods__cta-final .page-resources-win55-deposit-withdrawal-methods__section-title {
  color: #FFD700;
}

.page-resources-win55-deposit-withdrawal-methods__cta-final .page-resources-win55-deposit-withdrawal-methods__section-title::after {
  background-color: #FFFFFF;
}

.page-resources-win55-deposit-withdrawal-methods__cta-final .page-resources-win55-deposit-withdrawal-methods__section-description {
  color: #E0E0E0;
}

.page-resources-win55-deposit-withdrawal-methods__cta-image {
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

  .page-resources-win55-deposit-withdrawal-methods__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-win55-deposit-withdrawal-methods__section-title {
    font-size: 2em;
  }

  .page-resources-win55-deposit-withdrawal-methods__method-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-win55-deposit-withdrawal-methods__cta-group {
    flex-direction: column;
  }

  .page-resources-win55-deposit-withdrawal-methods__cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }
}

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

  .page-resources-win55-deposit-withdrawal-methods__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-win55-deposit-withdrawal-methods__section-title {
    font-size: 1.8em;
  }

  .page-resources-win55-deposit-withdrawal-methods__section-description,
  .page-resources-win55-deposit-withdrawal-methods__method-text,
  .page-resources-win55-deposit-withdrawal-methods__steps-list li,
  .page-resources-win55-deposit-withdrawal-methods__notes-list li,
  .page-resources-win55-deposit-withdrawal-methods__faq-answer {
    font-size: 0.9em;
  }
}