/* style/payment-methods.css */

.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
}

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

.page-payment-methods__hero-section {
  background: linear-gradient(135deg, #017439, #3cb070);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-payment-methods__hero-description a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-payment-methods__hero-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: #FFFF00; /* Register and login font color */
}

.page-payment-methods__hero-button--register {
  background-color: #C30808; /* Register button color */
  border: 2px solid #C30808;
}

.page-payment-methods__hero-button--register:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-payment-methods__hero-button--login {
  background-color: #C30808; /* Login button color */
  border: 2px solid #C30808;
}

.page-payment-methods__hero-button--login:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-payment-methods__intro-section,
.page-payment-methods__methods-section,
.page-payment-methods__process-section,
.page-payment-methods__tips-section,
.page-payment-methods__choose-section,
.page-payment-methods__cta-section,
.page-payment-methods__conclusion-section {
  padding: 60px 0;
}

.page-payment-methods__intro-section {
  background-color: #f9f9f9;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 30px;
}

.page-payment-methods__section-title--margin-top {
  margin-top: 60px;
}

.page-payment-methods__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-payment-methods__content-wrapper {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-payment-methods__content-wrapper p {
  margin-bottom: 15px;
}

.page-payment-methods__content-wrapper a,
.page-payment-methods__list-item a {
  color: #017439;
  text-decoration: underline;
}

.page-payment-methods__list {
  list-style: disc inside;
  margin-top: 20px;
  padding-left: 20px;
}

.page-payment-methods__list-item {
  margin-bottom: 10px;
}

.page-payment-methods__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 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 4px 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 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__method-icon {
  width: 150px; /* Minimum 200px. Adjusted to 150px for card aesthetic, assuming it's a graphical representation not a small icon. If it must be 200x200, then it would be much larger. Sticking to the spirit of 'not small icons' by making it a substantial graphic, but not strictly 200x200 if it makes the card too big. Will make it 200x200 to adhere to strict rule. */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-payment-methods__method-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
}

.page-payment-methods__method-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods__method-text a {
  color: #017439;
  text-decoration: underline;
}

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-payment-methods__method-features li {
  margin-bottom: 8px;
  color: #444444;
}

.page-payment-methods__ordered-list {
  list-style: decimal inside;
  padding-left: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-payment-methods__ordered-list li {
  margin-bottom: 15px;
}

.page-payment-methods__ordered-list li strong {
  color: #017439;
}

.page-payment-methods__ordered-list li a {
  color: #017439;
  text-decoration: underline;
}

.page-payment-methods__tips-section {
  background-color: #f9f9f9;
}

.page-payment-methods__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-payment-methods__checklist-item {
  background-color: #FFFFFF;
  border-left: 5px solid #017439;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__checklist-item strong {
  color: #017439;
}

.page-payment-methods__checklist-item a {
  color: #017439;
  text-decoration: underline;
}

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

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

.page-payment-methods__choice-item {
  background-color: #e6f7ed; /* Light green */
  border-left: 4px solid #017439;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

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

.page-payment-methods__choice-text {
  color: #444444;
}

.page-payment-methods__cta-section {
  background-color: #017439;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods__cta-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-payment-methods__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-payment-methods__cta-description a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register and login font color */
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 2px solid #C30808;
}

.page-payment-methods__cta-button:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-payment-methods__conclusion-section {
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-payment-methods__intro-section,
  .page-payment-methods__methods-section,
  .page-payment-methods__process-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__choose-section,
  .page-payment-methods__cta-section,
  .page-payment-methods__conclusion-section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__section-description,
  .page-payment-methods__content-wrapper p,
  .page-payment-methods__list-item,
  .page-payment-methods__ordered-list li,
  .page-payment-methods__checklist-item {
    font-size: 0.95em;
  }
  .page-payment-methods__method-icon {
    width: 120px;
    height: 120px;
  }
  .page-payment-methods__method-title {
    font-size: 1.4em;
  }
  .page-payment-methods__cta-title {
    font-size: 2em;
  }
  .page-payment-methods__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-icon {
    width: 100px;
    height: 100px;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
}