/* style/help-center-deposit-withdrawal-guide.css */

/* Base styles for the page content area */
.page-help-center-deposit-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text for good contrast on lighter backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for readability */
}

/* Container for consistent spacing */
.page-help-center-deposit-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-help-center-deposit-withdrawal-guide__hero {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Deep blue to slightly lighter blue gradient */
    color: #ffffff; /* White text for contrast on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-help-center-deposit-withdrawal-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-help-center-deposit-withdrawal-guide__hero > .page-help-center-deposit-withdrawal-guide__container {
    position: relative;
    z-index: 1;
}

.page-help-center-deposit-withdrawal-guide__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    font-weight: bold;
}

.page-help-center-deposit-withdrawal-guide__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-help-center-deposit-withdrawal-guide__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-help-center-deposit-withdrawal-guide__button--primary {
    background-color: #FFCC00; /* Gold for primary button */
    color: #003366; /* Deep blue text on gold */
    border: 2px solid #FFCC00;
}

.page-help-center-deposit-withdrawal-guide__button--primary:hover {
    background-color: #e6b800; /* Darker gold on hover */
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-help-center-deposit-withdrawal-guide__button--secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold text for secondary button */
    border: 2px solid #FFCC00;
}

.page-help-center-deposit-withdrawal-guide__button--secondary:hover {
    background-color: #FFCC00; /* Gold background on hover */
    color: #003366; /* Deep blue text on gold */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-help-center-deposit-withdrawal-guide__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for main sections */
    border-bottom: 1px solid #eeeeee; /* Light separator */
}

.page-help-center-deposit-withdrawal-guide__section:nth-of-type(even) {
    background-color: #f0f4f7; /* Slightly different background for alternating sections */
}

.page-help-center-deposit-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-help-center-deposit-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold underline */
    border-radius: 2px;
}

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

.page-help-center-deposit-withdrawal-guide__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #003366; /* Blue top border for step items */
}

.page-help-center-deposit-withdrawal-guide__step-item:hover {
    transform: translateY(-5px);
}

.page-help-center-deposit-withdrawal-guide__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-help-center-deposit-withdrawal-guide__step-item h3 {
    font-size: 1.5em;
    color: #003366; /* Deep blue for step titles */
    margin-bottom: 15px;
}

.page-help-center-deposit-withdrawal-guide__step-item p {
    font-size: 1em;
    color: #555555; /* Slightly lighter text for step description */
}

.page-help-center-deposit-withdrawal-guide__step-item a {
    color: #003366; /* Deep blue for links within steps */
    text-decoration: underline;
}

.page-help-center-deposit-withdrawal-guide__step-item a:hover {
    color: #FFCC00; /* Gold on hover */
}

.page-help-center-deposit-withdrawal-guide__note {
    background-color: #fffbe6; /* Light yellow background for notes */
    border-left: 5px solid #FFCC00; /* Gold border for notes */
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
    color: #665500; /* Darker text for notes */
}

/* FAQ Section */
.page-help-center-deposit-withdrawal-guide__faq {
    background-color: #f0f4f7;
}

.page-help-center-deposit-withdrawal-guide__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-help-center-deposit-withdrawal-guide__faq-question {
    font-size: 1.3em;
    color: #003366; /* Deep blue for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-help-center-deposit-withdrawal-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00; /* Gold plus icon */
    transition: transform 0.3s ease;
}

.page-help-center-deposit-withdrawal-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-help-center-deposit-withdrawal-guide__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #eeeeee;
    margin-top: 10px;
}

/* Call to Action Section */
.page-help-center-deposit-withdrawal-guide__contact-cta {
    background: linear-gradient(135deg, #003366, #336699); /* Dark blue gradient */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-help-center-deposit-withdrawal-guide__contact-cta > .page-help-center-deposit-withdrawal-guide__container {
    position: relative;
    z-index: 1;
}

.page-help-center-deposit-withdrawal-guide__contact-cta .page-help-center-deposit-withdrawal-guide__section-title {
    color: #FFCC00; /* Gold for CTA title */
}

.page-help-center-deposit-withdrawal-guide__contact-cta .page-help-center-deposit-withdrawal-guide__section-title::after {
    background-color: #e0e0e0; /* Lighter underline for contrast */
}

.page-help-center-deposit-withdrawal-guide__contact-cta p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-help-center-deposit-withdrawal-guide__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-help-center-deposit-withdrawal-guide__title {
        font-size: 2.5em;
    }

    .page-help-center-deposit-withdrawal-guide__subtitle {
        font-size: 1.1em;
    }

    .page-help-center-deposit-withdrawal-guide__section-title {
        font-size: 2em;
    }

    .page-help-center-deposit-withdrawal-guide__steps {
        grid-template-columns: 1fr;
    }

    .page-help-center-deposit-withdrawal-guide__actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-help-center-deposit-withdrawal-guide__title {
        font-size: 2em;
    }

    .page-help-center-deposit-withdrawal-guide__subtitle {
        font-size: 1em;
    }

    .page-help-center-deposit-withdrawal-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-help-center-deposit-withdrawal-guide__step-item {
        padding: 20px;
    }
    .page-help-center-deposit-withdrawal-guide__faq-question {
        font-size: 1.1em;
    }
}