/* style/deposit-withdrawal-tutorial-deposit-methods.css */

/* Base Styles & Typography */
.page-deposit-withdrawal-tutorial-deposit-methods {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for good contrast on light backgrounds */
    line-height: 1.6;
}

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

.page-deposit-withdrawal-tutorial-deposit-methods__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-tutorial-deposit-methods__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-tutorial-deposit-methods__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-deposit-withdrawal-tutorial-deposit-methods__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-deposit-withdrawal-tutorial-deposit-methods__btn--primary {
    background-color: #FFD700; /* Auxiliary gold */
    color: #003366; /* Primary dark blue */
    border: none;
}

.page-deposit-withdrawal-tutorial-deposit-methods__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-tutorial-deposit-methods__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary gold */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__btn--secondary:hover {
    background-color: #FFD700;
    color: #003366; /* Primary dark blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-tutorial-deposit-methods__inline-link {
    color: #003366; /* Primary dark blue */
    text-decoration: underline;
    font-weight: bold;
}

.page-deposit-withdrawal-tutorial-deposit-methods__inline-link:hover {
    color: #FFD700; /* Auxiliary gold */
}

.page-deposit-withdrawal-tutorial-deposit-methods__content-section {
    padding: 60px 0;
}

.page-deposit-withdrawal-tutorial-deposit-methods__content-section--alt-bg {
    background-color: #f8f8f8; /* Light grey for contrast */
}

.page-deposit-withdrawal-tutorial-deposit-methods__section-title {
    font-size: 2.2em;
    color: #003366; /* Primary dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary gold */
    border-radius: 2px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-deposit-withdrawal-tutorial-deposit-methods__text-block--highlight {
    font-weight: bold;
    color: #003366;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-deposit-withdrawal-tutorial-deposit-methods__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-deposit-withdrawal-tutorial-deposit-methods__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-tutorial-deposit-methods__image-caption {
    font-style: italic;
    color: #666666;
    margin-top: 15px;
    font-size: 0.95em;
}

/* Method Cards */
.page-deposit-withdrawal-tutorial-deposit-methods__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-title {
    font-size: 1.6em;
    color: #003366; /* Primary dark blue */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700; /* Auxiliary gold */
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-features li {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #444444;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-features li strong {
    color: #003366;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-features ol {
    margin-top: 10px;
    margin-left: 20px;
    list-style: decimal;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-features ol li {
    margin-bottom: 5px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-icon {
    width: 60px;
    height: 60px;
    margin-top: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.page-deposit-withdrawal-tutorial-deposit-methods__method-card:hover .page-deposit-withdrawal-tutorial-deposit-methods__method-icon {
    opacity: 1;
}

/* Step-by-Step Guide */
.page-deposit-withdrawal-tutorial-deposit-methods__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border-top: 5px solid #003366; /* Primary dark blue accent */
}

.page-deposit-withdrawal-tutorial-deposit-methods__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700; /* Auxiliary gold */
    color: #003366; /* Primary dark blue */
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-tutorial-deposit-methods__step-title {
    font-size: 1.4em;
    color: #003366; /* Primary dark blue */
    margin-bottom: 15px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__step-description {
    font-size: 0.95em;
    color: #555555;
}

/* FAQ Section */
.page-deposit-withdrawal-tutorial-deposit-methods__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFD700; /* Auxiliary gold accent */
}

.page-deposit-withdrawal-tutorial-deposit-methods__faq-question {
    font-size: 1.2em;
    color: #003366; /* Primary dark blue */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-deposit-withdrawal-tutorial-deposit-methods__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-tutorial-deposit-methods__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-deposit-withdrawal-tutorial-deposit-methods__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    display: none;
}

.page-deposit-withdrawal-tutorial-deposit-methods__faq-answer.active {
    display: block;
}

/* CTA Section */
.page-deposit-withdrawal-tutorial-deposit-methods__cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(90deg, #003366, #004080);
    color: #ffffff;
}

.page-deposit-withdrawal-tutorial-deposit-methods__cta-section .page-deposit-withdrawal-tutorial-deposit-methods__section-title {
    color: #FFD700; /* Auxiliary gold */
}

.page-deposit-withdrawal-tutorial-deposit-methods__cta-section .page-deposit-withdrawal-tutorial-deposit-methods__section-title::after {
    background-color: #ffffff;
}

.page-deposit-withdrawal-tutorial-deposit-methods__cta-section .page-deposit-withdrawal-tutorial-deposit-methods__text-block {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-tutorial-deposit-methods__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-tutorial-deposit-methods__hero-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__hero-subtitle {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__section-title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__method-card, 
    .page-deposit-withdrawal-tutorial-deposit-methods__step-card {
        padding: 20px;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__method-title {
        font-size: 1.4em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__step-title {
        font-size: 1.2em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-tutorial-deposit-methods__hero-title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__hero-subtitle {
        font-size: 1em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__section-title {
        font-size: 1.6em;
    }

    .page-deposit-withdrawal-tutorial-deposit-methods__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}