/* style/resources-deposit-withdrawal-process.css */

.page-resources-deposit-withdrawal-process {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Lighter text for dark background */
    background-color: #1A202C;
}

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

.page-resources-deposit-withdrawal-process__container--flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-resources-deposit-withdrawal-process__container--center {
    text-align: center;
}

.page-resources-deposit-withdrawal-process__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold text for hero title */
}

.page-resources-deposit-withdrawal-process__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
}

.page-resources-deposit-withdrawal-process__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e5dfd3;
}

.page-resources-deposit-withdrawal-process__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-resources-deposit-withdrawal-process__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-resources-deposit-withdrawal-process__button--primary:hover {
    background-color: #e0b800;
}

.page-resources-deposit-withdrawal-process__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-deposit-withdrawal-process__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-resources-deposit-withdrawal-process__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-deposit-withdrawal-process__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-deposit-withdrawal-process__section:last-of-type {
    border-bottom: none;
}

.page-resources-deposit-withdrawal-process__section--intro {
    background-color: #2a3340;
}

.page-resources-deposit-withdrawal-process__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-deposit-withdrawal-process__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-deposit-withdrawal-process__sub-heading {
    font-size: 1.2em;
    text-align: center;
    color: #e5dfd3;
    margin-bottom: 50px;
}

.page-resources-deposit-withdrawal-process__content-block {
    flex: 1;
    min-width: 300px;
}

.page-resources-deposit-withdrawal-process__content-block h2 {
    text-align: left;
    margin-bottom: 20px;
}

.page-resources-deposit-withdrawal-process__content-block h2::after {
    left: 0;
    transform: translateX(0);
}

.page-resources-deposit-withdrawal-process__content-block p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e5dfd3;
}

.page-resources-deposit-withdrawal-process__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-resources-deposit-withdrawal-process__image--small {
    max-width: 80%;
    margin: 30px auto;
    display: block;
}

.page-resources-deposit-withdrawal-process__image--large {
    max-width: 90%;
    margin: 40px auto;
    display: block;
}

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

.page-resources-deposit-withdrawal-process__step-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-deposit-withdrawal-process__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-process__step-icon {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.page-resources-deposit-withdrawal-process__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-process__step-item p {
    color: #e5dfd3;
    line-height: 1.7;
}

.page-resources-deposit-withdrawal-process__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
    color: #e5dfd3;
}

.page-resources-deposit-withdrawal-process__list li {
    margin-bottom: 8px;
}

.page-resources-deposit-withdrawal-process__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-deposit-withdrawal-process__link:hover {
    color: #e0b800;
    text-decoration: underline;
}

.page-resources-deposit-withdrawal-process__note {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    color: #b0b0b0;
}

.page-resources-deposit-withdrawal-process__cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-resources-deposit-withdrawal-process__tip-card {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-resources-deposit-withdrawal-process__tip-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-process__tip-card p {
    color: #e5dfd3;
    line-height: 1.7;
}

.page-resources-deposit-withdrawal-process__faq-item {
    background-color: #2a3340;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-deposit-withdrawal-process__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-deposit-withdrawal-process__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-resources-deposit-withdrawal-process__faq-answer {
    color: #e5dfd3;
    line-height: 1.7;
    display: none;
    margin-top: 15px;
}

.page-resources-deposit-withdrawal-process__faq-answer.active {
    display: block;
}

.page-resources-deposit-withdrawal-process__section--final-cta {
    padding: 100px 0;
    background-color: #1A202C;
    text-align: center;
}

.page-resources-deposit-withdrawal-process__section--final-cta .page-resources-deposit-withdrawal-process__heading {
    color: #FFD700;
}

.page-resources-deposit-withdrawal-process__section--final-cta p {
    font-size: 1.3em;
    color: #e5dfd3;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-deposit-withdrawal-process__hero-title {
        font-size: 2.8em;
    }
    .page-resources-deposit-withdrawal-process__heading {
        font-size: 2em;
    }
    .page-resources-deposit-withdrawal-process__container--flex {
        flex-direction: column;
    }
    .page-resources-deposit-withdrawal-process__content-block, .page-resources-deposit-withdrawal-process__image-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-deposit-withdrawal-process__hero {
        padding: 80px 0;
    }
    .page-resources-deposit-withdrawal-process__hero-title {
        font-size: 2.2em;
    }
    .page-resources-deposit-withdrawal-process__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-deposit-withdrawal-process__heading {
        font-size: 1.8em;
    }
    .page-resources-deposit-withdrawal-process__sub-heading {
        font-size: 1em;
    }
    .page-resources-deposit-withdrawal-process__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-deposit-withdrawal-process__step-title {
        font-size: 1.3em;
    }
    .page-resources-deposit-withdrawal-process__tip-title, .page-resources-deposit-withdrawal-process__faq-question {
        font-size: 1.2em;
    }
    .page-resources-deposit-withdrawal-process__section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-deposit-withdrawal-process__hero-title {
        font-size: 1.8em;
    }
    .page-resources-deposit-withdrawal-process__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-deposit-withdrawal-process__button {
        width: 100%;
        max-width: 280px;
    }
    .page-resources-deposit-withdrawal-process__heading {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-resources-deposit-withdrawal-process__section {
        padding: 40px 0;
    }
    .page-resources-deposit-withdrawal-process__image--small {
        max-width: 100%;
    }
    .page-resources-deposit-withdrawal-process__image--large {
        max-width: 100%;
    }
}