:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --page-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --text-light: #ffffff;
    --text-dark: #333333; /* Default dark text for light backgrounds */
}

/* Base styles for the page content */
.page-payment-methods-deposit-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--page-bg); /* Page background */
}

.page-payment-methods-deposit-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-payment-methods-deposit-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-payment-methods-deposit-guide__section:nth-of-type(even) {
    background-color: var(--page-bg);
}

.page-payment-methods-deposit-guide__section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

/* HERO Section */
.page-payment-methods-deposit-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    /* shared.css handles body padding-top, so this is a small decorative top padding */
    padding-top: 10px; 
    background-color: var(--page-bg);
}

.page-payment-methods-deposit-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width within max-width */
}

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

.page-payment-methods-deposit-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods-deposit-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Using clamp for H1 font size */
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-payment-methods-deposit-guide__intro-description {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-payment-methods-deposit-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--glow-color);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-payment-methods-deposit-guide__cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* General Introduction */
.page-payment-methods-deposit-guide__introduction p {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Method Grid */
.page-payment-methods-deposit-guide__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-payment-methods-deposit-guide__method-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color); /* Added border for clarity */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-main); /* Ensure dark text on light card background */
}

.page-payment-methods-deposit-guide__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-deposit-guide__method-card img {
    width: 100%;
    max-width: 400px; /* Constrain image width within card */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-payment-methods-deposit-guide__card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__method-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.page-payment-methods-deposit-guide__list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Detailed Guide */
.page-payment-methods-deposit-guide__guide .page-payment-methods-deposit-guide__section-title {
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__guide p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-payment-methods-deposit-guide__step-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-payment-methods-deposit-guide__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid var(--border-color);
    color: var(--text-main); /* Ensure dark text on light card background */
}

.page-payment-methods-deposit-guide__step-item img {
    max-width: 100%;
    width: 600px; /* Display width */
    height: 400px; /* Display height */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.page-payment-methods-deposit-guide__step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px var(--glow-color);
}

.page-payment-methods-deposit-guide__step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__step-item p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 700px;
    text-align: center;
}

.page-payment-methods-deposit-guide__important-notes {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-main); /* Ensure dark text on light card background */
}

.page-payment-methods-deposit-guide__notes-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Tips Section */
.page-payment-methods-deposit-guide__tips .page-payment-methods-deposit-guide__section-title {
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__tip-list {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
    font-size: 17px;
    list-style: none;
    padding: 0;
}

.page-payment-methods-deposit-guide__tip-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-payment-methods-deposit-guide__tip-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-payment-methods-deposit-guide__cta-block {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-deposit-guide__cta-block p {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
    text-align: center;
}

/* FAQ Section */
.page-payment-methods-deposit-guide__faq .page-payment-methods-deposit-guide__section-title {
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

details.page-payment-methods-deposit-guide__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-main); /* Ensure dark text on light card background */
}

details.page-payment-methods-deposit-guide__faq-item summary.page-payment-methods-deposit-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

details.page-payment-methods-deposit-guide__faq-item summary.page-payment-methods-deposit-guide__faq-question::-webkit-details-marker {
    display: none;
}

details.page-payment-methods-deposit-guide__faq-item summary.page-payment-methods-deposit-guide__faq-question:hover {
    background: #f5f8fc;
}

.page-payment-methods-deposit-guide__faq-qtext {
    flex: 1;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
    width: 30px;
    text-align: center;
}

details.page-payment-methods-deposit-guide__faq-item .page-payment-methods-deposit-guide__faq-answer {
    padding: 0 25px 20px;
    background: #f9fbfc;
    border-radius: 0 0 10px 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
}

.page-payment-methods-deposit-guide__faq-answer p {
    margin: 0;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods-deposit-guide__hero-image img {
        height: 500px;
    }
    .page-payment-methods-deposit-guide__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .page-payment-methods-deposit-guide__section-title {
        font-size: 30px;
    }
    .page-payment-methods-deposit-guide__step-title {
        font-size: 24px;
    }
    .page-payment-methods-deposit-guide__cta-block p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-deposit-guide__hero-section {
        padding-top: 10px !important; /* Small decorative top padding */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-payment-methods-deposit-guide__hero-image {
        margin-bottom: 20px;
    }
    .page-payment-methods-deposit-guide__hero-image img {
        height: 300px;
        border-radius: 8px;
        max-width: 100% !important; /* Ensure image fits */
        width: 100% !important;
        height: auto !important;
    }
    .page-payment-methods-deposit-guide__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-payment-methods-deposit-guide__intro-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-payment-methods-deposit-guide__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-top: 15px;
    }

    .page-payment-methods-deposit-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-payment-methods-deposit-guide__section {
        padding: 40px 0;
    }
    .page-payment-methods-deposit-guide__section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .page-payment-methods-deposit-guide__introduction p,
    .page-payment-methods-deposit-guide__method-card p,
    .page-payment-methods-deposit-guide__guide p,
    .page-payment-methods-deposit-guide__tip-list li,
    .page-payment-methods-deposit-guide__faq-answer p {
        font-size: 15px;
        text-align: left;
    }
    .page-payment-methods-deposit-guide__method-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-payment-methods-deposit-guide__method-card {
        padding: 25px;
    }
    .page-payment-methods-deposit-guide__method-card img {
        height: 200px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-payment-methods-deposit-guide__card-title {
        font-size: 20px;
    }
    .page-payment-methods-deposit-guide__step-item {
        padding: 30px 20px;
    }
    .page-payment-methods-deposit-guide__step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-payment-methods-deposit-guide__step-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .page-payment-methods-deposit-guide__step-item img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-payment-methods-deposit-guide__important-notes {
        padding: 25px;
    }
    .page-payment-methods-deposit-guide__notes-title {
        font-size: 20px;
    }
    .page-payment-methods-deposit-guide__cta-block {
        padding: 30px 20px;
    }
    .page-payment-methods-deposit-guide__cta-block p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    details.page-payment-methods-deposit-guide__faq-item summary.page-payment-methods-deposit-guide__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-payment-methods-deposit-guide__faq-toggle {
        font-size: 24px;
        margin-left: 15px;
        width: 25px;
    }
    details.page-payment-methods-deposit-guide__faq-item .page-payment-methods-deposit-guide__faq-answer {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}