/* style/payment-methods.css */

/* Variables for colors and spacing */
:root {
  --primary-color: #1A237E; /* Deep Indigo */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light: #f9f9f9;
  --border-color: #333; /* Adjusted for dark background */
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark bg */
  --shadow-dark: rgba(0, 0, 0, 0.4);
  --shadow-light: rgba(0, 0, 0, 0.15);
}

.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* General text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency with body bg */
  line-height: 1.6;
}

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

.page-payment-methods__section-title {
  font-size: 38px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-payment-methods__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__subtitle {
  font-size: 28px;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.highlight-keyword {
  color: var(--secondary-color);
  font-weight: bold;
}

/* \u{1F6A8} Video Section Styles (Module 0) */
.page-payment-methods__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* \u{1F6A8} Desktop padding-top for fixed header */
  background-color: #0d0d0d; /* Slightly different dark background for visual separation */
}