/* style/payment-methods-deposit-guide.css */

.page-payment-methods-deposit-guide {
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-payment-methods-deposit-guide__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-payment-methods-deposit-guide__section--alt-background {
    background-color: #f8f8f8; /* Slightly off-white for contrast */
}

.page-payment-methods-deposit-guide__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.page-payment-methods-deposit-guide__hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-payment-methods-deposit-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit hero image height */
    min-width: 200px;
    min-height: 200px;
}

.page-payment-methods-deposit-guide__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #FFFFFF; /* White text on hero image */
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
    padding: 40px;
    border-radius: 8px;
    max-width: 90%;
}

.page-payment-methods-deposit-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-payment-methods-deposit-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-deposit-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-payment-methods-deposit-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
    font-size: 1.1em;
}

.page-payment-methods-deposit-guide__button--register {
    background-color: #FFFFFF; /* Custom color for Register */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-payment-methods-deposit-guide__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-payment-methods-deposit-guide__button--login {
    background-color: #FCBC45; /* Custom color for Login */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-payment-methods-deposit-guide__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-payment-methods-deposit-guide__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-payment-methods-deposit-guide__button--primary:hover {
    background-color: #000000;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-payment-methods-deposit-guide__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-payment-methods-deposit-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-payment-methods-deposit-guide__paragraph {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-deposit-guide__inline-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-payment-methods-deposit-guide__inline-link:hover {
    text-decoration: underline;
}

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

.page-payment-methods-deposit-guide__feature-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-payment-methods-deposit-guide__feature-card:hover {
    transform: translateY(-5px);
}

.page-payment-methods-deposit-guide__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__feature-description {
    font-size: 1em;
    color: #555555;
}

.page-payment-methods-deposit-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-payment-methods-deposit-guide__image--centered {
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-deposit-guide__image--full-width {
    width: 100%;
}

.page-payment-methods-deposit-guide__steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-deposit-guide__step-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-payment-methods-deposit-guide__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.page-payment-methods-deposit-guide__step-title::before {
    content: ''; /* Dynamically set in JS for step number */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #FCBC45;
    color: #000000;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-payment-methods-deposit-guide__step-description {
    font-size: 1em;
    color: #555555;
}

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

.page-payment-methods-deposit-guide__method-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}