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

.page-payment-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Main color gradient */
  color: #ffffff; /* White text for contrast */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__hero-description {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-payment-methods__hero-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Main color for text */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__hero-button:hover {
  background-color: #e6b800; /* Darker auxiliary color on hover */
  transform: translateY(-3px);
}

.page-payment-methods__section {
  padding: 60px 0;
  background-color: #ffffff; /* White background for content sections */
  border-bottom: 1px solid #eeeeee;
}

.page-payment-methods__section:nth-of-type(even) {
  background-color: #f0f2f5; /* Slightly darker background for alternating sections */
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-payment-methods__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color for underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-payment-methods__overview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: justify;
}

.page-payment-methods__overview-content p {
  font-size: 1.1em;
  max-width: 800px;
}

.page-payment-methods__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.page-payment-methods__image--full-width {
  width: 100%;
}

.page-payment-methods__image--small {
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__method-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2)); /* Shadow for icons */
}

.page-payment-methods__method-title {
  font-size: 1.8em;
  color: #003366; /* Main color */
  margin-bottom: 15px;
}

.page-payment-methods__method-card p {
  font-size: 1.05em;
  color: #555555;
  margin-bottom: 20px;
}

.page-payment-methods__method-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-payment-methods__method-card li {
  margin-bottom: 8px;
  color: #444444;
  font-size: 0.95em;
}

.page-payment-methods__method-card li strong {
  color: #003366;
}

.page-payment-methods__learn-more-button {
  display: inline-block;
  background-color: #003366; /* Main color */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-payment-methods__learn-more-button:hover {
  background-color: #004488; /* Darker main color on hover */
}

.page-payment-methods__cta-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #333333;
}

.page-payment-methods__cta-text a {
  color: #FFCC00; /* Auxiliary color for text links */
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__cta-text a:hover {
  text-decoration: underline;
}

.page-payment-methods__note {
  background-color: #fff3cd; /* Light warning yellow */
  border-left: 5px solid #ffc107; /* Darker warning yellow */
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  color: #664d03; /* Dark text for warning */
  font-size: 1em;
}

.page-payment-methods__note a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-payment-methods__note a:hover {
  text-decoration: underline;
}

.page-payment-methods__fees-limits .page-payment-methods__table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-payment-methods__transaction-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is readable on smaller screens */
}

.page-payment-methods__transaction-table th,
.page-payment-methods__transaction-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.page-payment-methods__transaction-table th {
  background-color: #003366; /* Main color for table headers */
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
}

.page-payment-methods__transaction-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-payment-methods__transaction-table tbody tr:hover {
  background-color: #f0f2f5;
}

.page-payment-methods__disclaimer {
  font-size: 0.9em;
  color: #777777;
  text-align: center;
  margin-top: 30px;
}

.page-payment-methods__disclaimer a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-payment-methods__disclaimer a:hover {
  text-decoration: underline;
}

.page-payment-methods__security ul {
  list-style: disc inside;
  padding-left: 20px;
  font-size: 1.1em;
  color: #444444;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-payment-methods__security ul li {
  margin-bottom: 10px;
}

.page-payment-methods__security ul li strong {
  color: #003366;
}

.page-payment-methods__security p {
  font-size: 1.1em;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-payment-methods__tips ol {
  list-style: decimal inside;
  padding-left: 20px;
  font-size: 1.1em;
  color: #444444;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-payment-methods__tips ol li {
  margin-bottom: 15px;
}

.page-payment-methods__tips ol li strong {
  color: #003366;
}

.page-payment-methods__faq-item {
  background-color: #f0f2f5;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #003366; /* Main color */
  margin-bottom: 10px;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-payment-methods__faq-answer a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-payment-methods__faq-answer a:hover {
  text-decoration: underline;
}

.page-payment-methods__related-pages {
  background-color: #e6f0fa; /* Lighter shade of main color */
}

.page-payment-methods__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-payment-methods__related-card {
  background-color: #ffffff;
  border: 1px solid #d0e0f0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__related-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-payment-methods__related-title a {
  text-decoration: none;
  color: inherit;
}

.page-payment-methods__related-title a:hover {
  text-decoration: underline;
  color: #FFCC00; /* Auxiliary color on hover */
}

.page-payment-methods__related-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods__cta-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Main color gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__cta-title {
  font-size: 2.8em;
  color: #FFCC00; /* Auxiliary color */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Main color for text */
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-payment-methods__cta-button:hover {
  background-color: #e6b800; /* Darker auxiliary color on hover */
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 3em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.2em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__method-card {
    padding: 25px;
  }
  .page-payment-methods__transaction-table th,
  .page-payment-methods__transaction-table td {
    padding: 12px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero {
    padding: 80px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__overview-content {
    flex-direction: column;
  }
  .page-payment-methods__overview-content p {
    text-align: left;
  }
  .page-payment-methods__related-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__cta-title {
    font-size: 2.2em;
  }
  .page-payment-methods__cta-description {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-payment-methods__transaction-table {
    min-width: 100%; /* Allow table to scroll horizontally */
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  .page-payment-methods__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}