/* style/payment-methods-online-payment.css */
.page-payment-methods-online-payment__hero {
  background: linear-gradient(135deg, #1A2B5B 0%, #3a5092 100%); /* Adjusted gradient for better contrast */
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-online-payment__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-payment-methods-online-payment__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-payment-methods-online-payment__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary color for highlight */
  font-weight: 700;
  line-height: 1.2;
}

.page-payment-methods-online-payment__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-payment-methods-online-payment__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary color for CTA */
  color: #1A2B5B; /* Primary color for text on CTA */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-online-payment__cta-button:hover {
  background-color: #e5c000; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-payment-methods-online-payment__section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333;
}

.page-payment-methods-online-payment__section:nth-of-type(even) {
  background-color: #eef2f7; /* Light background for alternating sections */
}

.page-payment-methods-online-payment__section-title {
  font-size: 2.5em;
  color: #1A2B5B; /* Primary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-payment-methods-online-payment__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-payment-methods-online-payment__intro .page-payment-methods-online-payment__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-payment-methods-online-payment__text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.page-payment-methods-online-payment__image-wrapper {
  text-align: center;
}

.page-payment-methods-online-payment__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-online-payment__secondary-cta-button {
  display: inline-block;
  background-color: #1A2B5B; /* Primary color for secondary CTA */
  color: #FFD700; /* Secondary color for text on secondary CTA */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods-online-payment__secondary-cta-button:hover {
  background-color: #0d1a3f;
  transform: translateY(-2px);
}

.page-payment-methods-online-payment__method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-online-payment__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-online-payment__card:hover {
  transform: translateY(-5px);
}

.page-payment-methods-online-payment__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-payment-methods-online-payment__card-title {
  font-size: 1.6em;
  color: #1A2B5B;
  margin-bottom: 15px;
}

.page-payment-methods-online-payment__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.page-payment-methods-online-payment__list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-payment-methods-online-payment__list li {
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #444;
  position: relative;
  padding-left: 25px;
}

.page-payment-methods-online-payment__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods-online-payment__list--ordered {
  list-style: decimal;
  padding-left: 20px;
  text-align: left;
}

.page-payment-methods-online-payment__list--ordered li {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
}

.page-payment-methods-online-payment__list--bullet {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.page-payment-methods-online-payment__list--bullet li {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
}

.page-payment-methods-online-payment__action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #1A2B5B;
  font-weight: 600;
}

.page-payment-methods-online-payment__withdraw .page-payment-methods-online-payment__grid-two-cols--reverse {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-payment-methods-online-payment__sub-section-title {
  font-size: 1.8em;
  color: #1A2B5B;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-payment-methods-online-payment__note {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 15px;
  border-radius: 5px;
  margin-top: 25px;
  font-style: italic;
  color: #856404;
}

.page-payment-methods-online-payment__security .page-payment-methods-online-payment__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-payment-methods-online-payment__faq-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-online-payment__faq-question {
  font-size: 1.4em;
  color: #1A2B5B;
  margin-bottom: 10px;
}

.page-payment-methods-online-payment__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.page-payment-methods-online-payment__floating-promo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FFD700;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: page-payment-methods-online-payment__pulse 2s infinite;
}

.page-payment-methods-online-payment__floating-promo:hover {
  transform: scale(1.05);
  animation: none;
}

.page-payment-methods-online-payment__floating-promo a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: #1A2B5B;
  font-weight: bold;
}

.page-payment-methods-online-payment__floating-promo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.page-payment-methods-online-payment__floating-promo-text {
  font-size: 1em;
  white-space: nowrap;
}

@keyframes page-payment-methods-online-payment__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-payment-methods-online-payment__title {
    font-size: 2.5em;
  }
  .page-payment-methods-online-payment__section-title {
    font-size: 2em;
  }
  .page-payment-methods-online-payment__intro .page-payment-methods-online-payment__grid-two-cols,
  .page-payment-methods-online-payment__security .page-payment-methods-online-payment__grid-two-cols,
  .page-payment-methods-online-payment__withdraw .page-payment-methods-online-payment__grid-two-cols--reverse {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-online-payment__grid-two-cols--reverse .page-payment-methods-online-payment__image-wrapper {
    order: -1; /* Image appears above text on mobile for reversed grid */
  }
  .page-payment-methods-online-payment__floating-promo {
    bottom: 20px;
    right: 20px;
  }
  .page-payment-methods-online-payment__floating-promo-text {
    font-size: 0.9em;
  }
  .page-payment-methods-online-payment__floating-promo a {
    padding: 8px 15px;
  }
  .page-payment-methods-online-payment__floating-promo-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-online-payment__hero {
    padding: 80px 0 60px;
  }
  .page-payment-methods-online-payment__title {
    font-size: 2em;
  }
  .page-payment-methods-online-payment__subtitle {
    font-size: 1em;
  }
  .page-payment-methods-online-payment__section {
    padding: 40px 0;
  }
  .page-payment-methods-online-payment__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-online-payment__method-cards {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-online-payment__card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-online-payment__title {
    font-size: 1.8em;
  }
  .page-payment-methods-online-payment__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-payment-methods-online-payment__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-online-payment__floating-promo {
    bottom: 15px;
    right: 15px;
    border-radius: 40px;
  }
  .page-payment-methods-online-payment__floating-promo a {
    padding: 6px 12px;
  }
  .page-payment-methods-online-payment__floating-promo-icon {
    width: 25px;
    height: 25px;
  }
  .page-payment-methods-online-payment__floating-promo-text {
    font-size: 0.8em;
  }
}