/* style/payment-methods-deposit-guide.css */
:root {
    --page-payment-methods-deposit-guide-primary-color: #0A2342;
    --page-payment-methods-deposit-guide-secondary-color: #FFD700;
    --page-payment-methods-deposit-guide-text-dark: #1a1a1a;
    --page-payment-methods-deposit-guide-text-light: #ffffff;
    --page-payment-methods-deposit-guide-bg-light: #f9f9f9;
    --page-payment-methods-deposit-guide-accent-gold-dark: #b39700; /* Darker shade of gold for text on gold background */
}

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

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

.page-payment-methods-deposit-guide__hero {
    background: linear-gradient(135deg, var(--page-payment-methods-deposit-guide-primary-color), #2A4365);
    color: var(--page-payment-methods-deposit-guide-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-payment-methods-deposit-guide__hero-content {
    max-width: 700px;
    padding: 20px;
}

.page-payment-methods-deposit-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-payment-methods-deposit-guide-secondary-color);
    line-height: 1.2;
}

.page-payment-methods-deposit-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-payment-methods-deposit-guide__hero-image-wrapper {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-payment-methods-deposit-guide__section {
    padding: 60px 0;
    background-color: var(--page-payment-methods-deposit-guide-bg-light);
    border-bottom: 1px solid #eee;
}

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

.page-payment-methods-deposit-guide__section-title {
    font-size: 2.5em;
    color: var(--page-payment-methods-deposit-guide-primary-color);
    text-align: center;
    margin-bottom: 20px;
    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: var(--page-payment-methods-deposit-guide-secondary-color);
    border-radius: 2px;
}

.page-payment-methods-deposit-guide__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-payment-methods-deposit-guide__cta-button {
    display: inline-block;
    background-color: var(--page-payment-methods-deposit-guide-secondary-color);
    color: var(--page-payment-methods-deposit-guide-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, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--page-payment-methods-deposit-guide-secondary-color);
}

.page-payment-methods-deposit-guide__cta-button:hover {
    background-color: var(--page-payment-methods-deposit-guide-accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: var(--page-payment-methods-deposit-guide-text-light); /* Ensure text is visible on darker gold */
}

.page-payment-methods-deposit-guide__cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-payment-methods-deposit-guide__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-payment-methods-deposit-guide-secondary-color);
}

.page-payment-methods-deposit-guide__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-deposit-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-payment-methods-deposit-guide__feature-title {
    font-size: 1.5em;
    color: var(--page-payment-methods-deposit-guide-primary-color);
    margin-bottom: 10px;
}

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

.page-payment-methods-deposit-guide__methods {
    padding-bottom: 80px;
}

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

.page-payment-methods-deposit-guide__method-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__method-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

.page-payment-methods-deposit-guide__method-title {
    font-size: 1.8em;
    color: var(--page-payment-methods-deposit-guide-primary-color);
    margin: 0;
}

.page-payment-methods-deposit-guide__method-description {
    margin-bottom: 20px;
    color: #444;
}

.page-payment-methods-deposit-guide__method-details {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-payment-methods-deposit-guide__method-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.page-payment-methods-deposit-guide__method-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--page-payment-methods-deposit-guide-secondary-color);
    font-weight: bold;
}

.page-payment-methods-deposit-guide__method-example {
    text-align: center;
    margin-top: 30px;
}

.page-payment-methods-deposit-guide__method-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__process {
    background-color: var(--page-payment-methods-deposit-guide-primary-color);
    color: var(--page-payment-methods-deposit-guide-text-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-payment-methods-deposit-guide__process .page-payment-methods-deposit-guide__section-title {
    color: var(--page-payment-methods-deposit-guide-secondary-color);
}

.page-payment-methods-deposit-guide__process .page-payment-methods-deposit-guide__section-intro {
    color: #e0e0e0;
}

.page-payment-methods-deposit-guide__steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-payment-methods-deposit-guide__step-item {
    background-color: #1a3a5e; /* Slightly lighter primary color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-deposit-guide__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-guide__step-icon {
    background-color: var(--page-payment-methods-deposit-guide-secondary-color);
    color: var(--page-payment-methods-deposit-guide-primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__step-title {
    font-size: 1.6em;
    color: var(--page-payment-methods-deposit-guide-secondary-color);
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__step-description {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__tips {
    background-color: var(--page-payment-methods-deposit-guide-bg-light);
}

.page-payment-methods-deposit-guide__tip-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-payment-methods-deposit-guide__tip-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-size: 1.1em;
    color: #444;
    border-left: 5px solid var(--page-payment-methods-deposit-guide-secondary-color);
}

.page-payment-methods-deposit-guide__tip-highlight {
    font-weight: bold;
    color: var(--page-payment-methods-deposit-guide-primary-color);
    margin-right: 8px;
}

.page-payment-methods-deposit-guide__faq {
    background-color: #f0f4f8;
}

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

.page-payment-methods-deposit-guide__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-payment-methods-deposit-guide__faq-question {
    font-size: 1.2em;
    color: var(--page-payment-methods-deposit-guide-primary-color);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #eaf1f8;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-payment-methods-deposit-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: var(--page-payment-methods-deposit-guide-secondary-color);
    transition: transform 0.3s ease;
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-question::after {
    transform: rotate(45deg);
}

.page-payment-methods-deposit-guide__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #555;
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-payment-methods-deposit-guide__conclusion {
    background: linear-gradient(135deg, var(--page-payment-methods-deposit-guide-primary-color), #2A4365);
    color: var(--page-payment-methods-deposit-guide-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-payment-methods-deposit-guide__conclusion .page-payment-methods-deposit-guide__section-title {
    color: var(--page-payment-methods-deposit-guide-secondary-color);
}

.page-payment-methods-deposit-guide__conclusion .page-payment-methods-deposit-guide__section-intro {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-payment-methods-deposit-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-payment-methods-deposit-guide__cta-button--primary {
    background-color: var(--page-payment-methods-deposit-guide-secondary-color);
    color: var(--page-payment-methods-deposit-guide-primary-color);
    border-color: var(--page-payment-methods-deposit-guide-secondary-color);
}

.page-payment-methods-deposit-guide__cta-button--primary:hover {
    background-color: var(--page-payment-methods-deposit-guide-accent-gold-dark);
    color: var(--page-payment-methods-deposit-guide-text-light);
}

.page-payment-methods-deposit-guide__cta-button--secondary {
    background-color: transparent;
    color: var(--page-payment-methods-deposit-guide-secondary-color);
    border: 2px solid var(--page-payment-methods-deposit-guide-secondary-color);
    box-shadow: none;
}

.page-payment-methods-deposit-guide__cta-button--secondary:hover {
    background-color: var(--page-payment-methods-deposit-guide-secondary-color);
    color: var(--page-payment-methods-deposit-guide-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-payment-methods-deposit-guide__hero {
        flex-direction: column;
        padding: 60px 0;
    }
    .page-payment-methods-deposit-guide__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods-deposit-guide__hero-image-wrapper {
        width: 100%;
        height: auto;
        max-width: 500px;
    }
    .page-payment-methods-deposit-guide__section-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-guide__feature-item, .page-payment-methods-deposit-guide__method-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-deposit-guide__hero {
        padding: 40px 0;
    }
    .page-payment-methods-deposit-guide__hero-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-guide__hero-description {
        font-size: 1em;
    }
    .page-payment-methods-deposit-guide__features-grid, .page-payment-methods-deposit-guide__steps {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-deposit-guide__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods-deposit-guide__section-intro {
        font-size: 0.95em;
    }
    .page-payment-methods-deposit-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-payment-methods-deposit-guide__method-title {
        font-size: 1.5em;
    }
    .page-payment-methods-deposit-guide__step-title {
        font-size: 1.4em;
    }
    .page-payment-methods-deposit-guide__faq-question {
        font-size: 1.1em;
    }
}