/* style/payment-methods-processing-times.css */
.page-payment-methods-processing-times__hero {
  background-color: #1E90FF; /* Dodger Blue */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-processing-times__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(30, 144, 255, 0.5) 70%, rgba(30, 144, 255, 0.9) 100%);
  opacity: 0.3;
  animation: page-payment-methods-processing-times__hero-pulse 10s infinite alternate;
  z-index: 0;
}

@keyframes page-payment-methods-processing-times__hero-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.5; }
}

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

.page-payment-methods-processing-times__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
}

.page-payment-methods-processing-times__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-payment-methods-processing-times__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-payment-methods-processing-times__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1E90FF; /* Dodger Blue text for contrast */
}

.page-payment-methods-processing-times__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods-processing-times__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-payment-methods-processing-times__btn--secondary:hover {
  background-color: #FFD700;
  color: #1E90FF;
  transform: translateY(-2px);
}

.page-payment-methods-processing-times__section {
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods-processing-times__section:nth-of-type(odd) {
  background-color: #f8f8f8; /* Light grey for subtle contrast */
  color: #333333;
}

.page-payment-methods-processing-times__section:nth-of-type(even) {
  background-color: #FFFFFF;
  color: #333333;
}

.page-payment-methods-processing-times__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #1E90FF; /* Dodger Blue for titles */
  font-weight: 700;
}

.page-payment-methods-processing-times__section-description {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  color: #555555;
}

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

.page-payment-methods-processing-times__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  height: 100%; /* Ensure cards are same height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-payment-methods-processing-times__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-processing-times__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  object-fit: contain;
}

.page-payment-methods-processing-times__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods-processing-times__card-text {
  font-size: 1.05em;
  line-height: 1.6;
  color: #444444;
  flex-grow: 1;
}

.page-payment-methods-processing-times__highlight {
  color: #1E90FF; /* Dodger Blue for key info */
  font-weight: bold;
}

.page-payment-methods-processing-times__note {
  font-size: 0.95em;
  margin-top: 50px;
  color: #666666;
  font-style: italic;
}

.page-payment-methods-processing-times__list,
.page-payment-methods-processing-times__ordered-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-payment-methods-processing-times__list li,
.page-payment-methods-processing-times__ordered-list li {
  background-color: #FFFFFF;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  border-radius: 5px;
}

.page-payment-methods-processing-times__list li strong,
.page-payment-methods-processing-times__ordered-list li strong {
  color: #1E90FF; /* Dodger Blue for strong text */
}

.page-payment-methods-processing-times__paragraph {
  font-size: 1.1em;
  max-width: 900px;
  margin: 40px auto 0 auto;
  line-height: 1.7;
  color: #444444;
}

.page-payment-methods-processing-times__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-processing-times__feature-item {
  background-color: #F0F8FF; /* Alice Blue for security features */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-processing-times__feature-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods-processing-times__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods-processing-times__feature-title {
  font-size: 1.6em;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-payment-methods-processing-times__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods-processing-times__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-payment-methods-processing-times__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

.page-payment-methods-processing-times__faq-answer {
  font-size: 1.05em;
  line-height: 1.6;
  color: #444444;
  display: block; /* Ensure it's always visible for simplicity, could be toggled with JS */
}

.page-payment-methods-processing-times__cta {
  background-color: #1E90FF; /* Dodger Blue background */
  color: #FFFFFF; /* White text */
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods-processing-times__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for CTA title */
  font-weight: 700;
}

.page-payment-methods-processing-times__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-payment-methods-processing-times__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods-processing-times__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-processing-times__section-title {
    font-size: 2.2em;
  }
  .page-payment-methods-processing-times__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-processing-times__hero {
    padding: 80px 0;
  }
  .page-payment-methods-processing-times__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-processing-times__hero-subtitle,
  .page-payment-methods-processing-times__section-description,
  .page-payment-methods-processing-times__paragraph {
    font-size: 1em;
  }
  .page-payment-methods-processing-times__section {
    padding: 60px 0;
  }
  .page-payment-methods-processing-times__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-processing-times__grid,
  .page-payment-methods-processing-times__security-features {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-processing-times__cta-title {
    font-size: 2em;
  }
  .page-payment-methods-processing-times__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-payment-methods-processing-times__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-processing-times__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-processing-times__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods-processing-times__card-title {
    font-size: 1.5em;
  }
  .page-payment-methods-processing-times__faq-question {
    font-size: 1.2em;
  }
  .page-payment-methods-processing-times__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods-processing-times__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}