/* style/payment-methods-transaction-fees.css */
.page-payment-methods-transaction-fees {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-payment-methods-transaction-fees__hero {
  background: linear-gradient(135deg, #003366, #1a5a92);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.page-payment-methods-transaction-fees__hero-content {
  max-width: 800px;
}

.page-payment-methods-transaction-fees__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for highlight */
}

.page-payment-methods-transaction-fees__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-payment-methods-transaction-fees__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods-transaction-fees__cta-button:hover {
  background-color: #e6b800; /* Darker auxiliary for hover */
  transform: translateY(-2px);
}

.page-payment-methods-transaction-fees__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-payment-methods-transaction-fees__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-payment-methods-transaction-fees__cta-button--secondary {
  background-color: #003366; /* Main color */
  color: #FFCC00; /* Auxiliary color for contrast */
  border: 1px solid #FFCC00;
  margin-left: 15px;
}

.page-payment-methods-transaction-fees__cta-button--secondary:hover {
  background-color: #002244; /* Darker main for hover */
  border-color: #e6b800;
}

.page-payment-methods-transaction-fees__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-payment-methods-transaction-fees__section:last-of-type {
  border-bottom: none;
}

.page-payment-methods-transaction-fees__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods-transaction-fees__section-title {
  font-size: 2.2em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-payment-methods-transaction-fees__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color */
  border-radius: 2px;
}

.page-payment-methods-transaction-fees__sub-title {
  font-size: 1.6em;
  color: #003366; /* Main color */
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00; /* Auxiliary color for emphasis */
  padding-left: 15px;
}

.page-payment-methods-transaction-fees__container p {
  margin-bottom: 15px;
  color: #555;
}

.page-payment-methods-transaction-fees__container ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-payment-methods-transaction-fees__container ul li {
  margin-bottom: 10px;
}

.page-payment-methods-transaction-fees__image-inline {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods-transaction-fees__method-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-payment-methods-transaction-fees__method-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods-transaction-fees__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 6px rgba(0, 51, 102, 0.2)); /* Shadow for icons */
}

.page-payment-methods-transaction-fees__method-name {
  font-size: 1.3em;
  color: #003366; /* Main color */
  margin-bottom: 10px;
}

.page-payment-methods-transaction-fees__method-card p {
  font-size: 0.95em;
  color: #666;
}

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

.page-payment-methods-transaction-fees__faq-question {
  font-size: 1.15em;
  color: #003366; /* Main color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods-transaction-fees__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-payment-methods-transaction-fees__tips-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-payment-methods-transaction-fees__tips-list li {
  background-color: #fff;
  border-left: 5px solid #FFCC00; /* Auxiliary color */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444;
}

.page-payment-methods-transaction-fees__cta-content {
  text-align: center;
  padding: 40px;
  background-color: #003366; /* Main color */
  border-radius: 10px;
  color: #fff;
}

.page-payment-methods-transaction-fees__cta-content .page-payment-methods-transaction-fees__section-title {
  color: #FFCC00; /* Auxiliary color */
}

.page-payment-methods-transaction-fees__cta-content .page-payment-methods-transaction-fees__section-title::after {
  background-color: #fff;
}

.page-payment-methods-transaction-fees__cta-content p {
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-payment-methods-transaction-fees__title {
    font-size: 2em;
  }

  .page-payment-methods-transaction-fees__subtitle {
    font-size: 1em;
  }

  .page-payment-methods-transaction-fees__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-transaction-fees__sub-title {
    font-size: 1.4em;
  }

  .page-payment-methods-transaction-fees__hero {
    padding: 60px 20px;
  }

  .page-payment-methods-transaction-fees__method-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-transaction-fees__tips-list {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-transaction-fees__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-transaction-fees__title {
    font-size: 1.8em;
  }

  .page-payment-methods-transaction-fees__section-title {
    font-size: 1.6em;
  }

  .page-payment-methods-transaction-fees__sub-title {
    font-size: 1.2em;
  }

  .page-payment-methods-transaction-fees__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-payment-methods-transaction-fees__cta-button--secondary {
    margin-top: 0;
  }
}