/* style/resources-pg66-deposit-methods.css */

:root {
    --pg66-primary-color: #0A2463;
    --pg66-secondary-color: #FFD700;
    --pg66-text-dark: #1A3A7A;
    --pg66-text-light: #FFFFFF;
    --pg66-background-light: #F8F9FA;
    --pg66-border-color: #E0E0E0;
}

.page-resources-pg66-deposit-methods {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--pg66-text-dark);
    background-color: var(--pg66-background-light);
}

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

.page-resources-pg66-deposit-methods__hero-section {
    background: linear-gradient(135deg, var(--pg66-primary-color), #334D82);
    color: var(--pg66-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-resources-pg66-deposit-methods__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--pg66-text-light);
    line-height: 1.2;
}

.page-resources-pg66-deposit-methods__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-pg66-deposit-methods__cta-button {
    display: inline-block;
    background-color: var(--pg66-secondary-color);
    color: var(--pg66-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--pg66-secondary-color);
}

.page-resources-pg66-deposit-methods__cta-button:hover {
    background-color: #E6B800;
    transform: translateY(-2px);
}

.page-resources-pg66-deposit-methods__cta-button--secondary {
    background-color: var(--pg66-primary-color);
    color: var(--pg66-secondary-color);
    border-color: var(--pg66-secondary-color);
}

.page-resources-pg66-deposit-methods__cta-button--secondary:hover {
    background-color: #1A3A7A;
    color: var(--pg66-secondary-color);
}

.page-resources-pg66-deposit-methods__cta-button--outline {
    background-color: transparent;
    color: var(--pg66-secondary-color);
    border: 2px solid var(--pg66-secondary-color);
}

.page-resources-pg66-deposit-methods__cta-button--outline:hover {
    background-color: var(--pg66-secondary-color);
    color: var(--pg66-primary-color);
}

.page-resources-pg66-deposit-methods__content-section {
    padding: 60px 0;
    background-color: var(--pg66-background-light);
}

.page-resources-pg66-deposit-methods__section-title {
    font-size: 2.2em;
    color: var(--pg66-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-pg66-deposit-methods__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-pg66-deposit-methods__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-pg66-deposit-methods__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-pg66-deposit-methods__method-card {
    background-color: var(--pg66-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--pg66-border-color);
}

.page-resources-pg66-deposit-methods__method-card:hover {
    transform: translateY(-5px);
}

.page-resources-pg66-deposit-methods__method-title {
    font-size: 1.5em;
    color: var(--pg66-primary-color);
    margin-bottom: 15px;
}

.page-resources-pg66-deposit-methods__method-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-resources-pg66-deposit-methods__method-description {
    font-size: 0.95em;
    color: var(--pg66-text-dark);
}

.page-resources-pg66-deposit-methods__ordered-list,
.page-resources-pg66-deposit-methods__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-pg66-deposit-methods__ordered-list li,
.page-resources-pg66-deposit-methods__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--pg66-text-dark);
}

.page-resources-pg66-deposit-methods__faq-item {
    background-color: var(--pg66-text-light);
    border: 1px solid var(--pg66-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-pg66-deposit-methods__faq-question {
    font-size: 1.3em;
    color: var(--pg66-primary-color);
    margin-bottom: 10px;
}

.page-resources-pg66-deposit-methods__faq-answer {
    font-size: 1em;
    color: var(--pg66-text-dark);
}

.page-resources-pg66-deposit-methods__cta-section {
    background-color: var(--pg66-primary-color);
    color: var(--pg66-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-pg66-deposit-methods__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--pg66-text-light);
}

.page-resources-pg66-deposit-methods__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-pg66-deposit-methods__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-pg66-deposit-methods__image--bottom {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    max-width: 1000px;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-pg66-deposit-methods__hero-title {
        font-size: 2.8em;
    }
    .page-resources-pg66-deposit-methods__section-title {
        font-size: 2em;
    }
    .page-resources-pg66-deposit-methods__cta-title {
        font-size: 2.4em;
    }
    .page-resources-pg66-deposit-methods__method-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-pg66-deposit-methods__hero-section {
        padding: 80px 0;
    }
    .page-resources-pg66-deposit-methods__hero-title {
        font-size: 2.2em;
    }
    .page-resources-pg66-deposit-methods__hero-description {
        font-size: 1em;
    }
    .page-resources-pg66-deposit-methods__section-title {
        font-size: 1.8em;
    }
    .page-resources-pg66-deposit-methods__cta-section {
        padding: 60px 0;
    }
    .page-resources-pg66-deposit-methods__cta-title {
        font-size: 2em;
    }
    .page-resources-pg66-deposit-methods__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-pg66-deposit-methods__cta-button {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-resources-pg66-deposit-methods__hero-section {
        padding: 60px 0;
    }
    .page-resources-pg66-deposit-methods__hero-title {
        font-size: 1.8em;
    }
    .page-resources-pg66-deposit-methods__section-title {
        font-size: 1.5em;
    }
    .page-resources-pg66-deposit-methods__cta-title {
        font-size: 1.8em;
    }
    .page-resources-pg66-deposit-methods__method-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-pg66-deposit-methods__cta-button {
        width: 90%;
    }
}