/* style/payment-methods.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --login-button-color: #EA7C07;
}

.page-payment-methods {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color); /* Matches body background from shared.css */
}

.page-payment-methods__section {
    padding: 60px 0;
    margin-bottom: 0;
}

.page-payment-methods__section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-payment-methods__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-payment-methods__dark-section .page-payment-methods__section-title,
.page-payment-methods__dark-section h3 {
    color: var(--text-light);
}

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

.page-payment-methods__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.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: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-dark);
    overflow: hidden;
}

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

.page-payment-methods__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 800px; /* Constrain image size within hero */
}