/* style/payment-methods.css */
:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --background-color: #F4F7FB;
  --text-main-color: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color); /* Body background is light, so text is dark */
  line-height: 1.6;
}

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

/* HERO Section */
.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
}

.page-payment-methods__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-payment-methods__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-payment-methods__hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 800px; /* Constrain H1 width */
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__hero-description {
  font-size: 18px;
  color: var(--text-main-color);
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
.page-payment-methods__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
  margin-top: 40px;
}

.page-payment-methods__section-description {
  font-size: 17px;
  color: var(--text-main-color);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-payment-methods__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-payment-methods__light-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
  padding: 60px 0;
}

.page-payment-methods__dark-bg {
  background-color: var(--primary-color);
  color: #ffffff; /* Dark background with light text */
  padding: 60px 0;
}

.page-payment-methods__dark-bg .page-payment-methods__section-title,
.page-payment-methods__dark-bg .page-payment-methods__sub-title {
  color: #ffffff;
}

.page-payment-methods__dark-bg .page-payment-methods__section-description {
  color: rgba(255, 255, 255, 0.9);
}