/* style/faq-deposit-withdrawal.css */

:root {
    --page-faq-deposit-withdrawal-primary-color: #007bff;
    --page-faq-deposit-withdrawal-secondary-color: #ffc107;
    --page-faq-deposit-withdrawal-text-color: #333;
    --page-faq-deposit-withdrawal-light-bg: #f8f9fa;
    --page-faq-deposit-withdrawal-dark-text: #212529;
    --page-faq-deposit-withdrawal-white: #ffffff;
}

.page-faq-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-faq-deposit-withdrawal-text-color);
    background-color: var(--page-faq-deposit-withdrawal-light-bg);
}

.page-faq-deposit-withdrawal__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, var(--page-faq-deposit-withdrawal-primary-color), var(--page-faq-deposit-withdrawal-secondary-color));
    color: var(--page-faq-deposit-withdrawal-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-faq-deposit-withdrawal-pulse 10s infinite alternate;
}

@keyframes page-faq-deposit-withdrawal-pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

.page-faq-deposit-withdrawal__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-faq-deposit-withdrawal__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-faq-deposit-withdrawal__cta-button {
    display: inline-block;
    background-color: var(--page-faq-deposit-withdrawal-primary-color);
    color: var(--page-faq-deposit-withdrawal-white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--page-faq-deposit-withdrawal-primary-color);
    position: relative;
    z-index: 1;
}

.page-faq-deposit-withdrawal__cta-button:hover {
    background-color: var(--page-faq-deposit-withdrawal-secondary-color);
    border-color: var(--page-faq-deposit-withdrawal-secondary-color);
    transform: translateY(-3px);
    color: var(--page-faq-deposit-withdrawal-dark-text);
}

.page-faq-deposit-withdrawal__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-faq-deposit-withdrawal__section:last-of-type {
    border-bottom: none;
}

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.2em;
    color: var(--page-faq-deposit-withdrawal-primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-faq-deposit-withdrawal__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--page-faq-deposit-withdrawal-secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-faq-deposit-withdrawal__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--page-faq-deposit-withdrawal-dark-text);
}

.page-faq-deposit-withdrawal__content-block {
    background-color: var(--page-faq-deposit-withdrawal-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.page-faq-deposit-withdrawal__sub-title {
    font-size: 1.6em;
    color: var(--page-faq-deposit-withdrawal-primary-color);
    margin-bottom: 20px;
    border-left: 5px solid var(--page-faq-deposit-withdrawal-secondary-color);
    padding-left: 15px;
}

.page-faq-deposit-withdrawal__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-faq-deposit-withdrawal__list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 1.05em;
    color: var(--page-faq-deposit-withdrawal-dark-text);
    position: relative;
    padding-left: 30px;
}

.page-faq-deposit-withdrawal__list li:last-child {
    border-bottom: none;
}

.page-faq-deposit-withdrawal__list li::before {
    content: '✓';
    color: var(--page-faq-deposit-withdrawal-secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.page-faq-deposit-withdrawal__list--ordered {
    list-style: decimal;
    padding-left: 25px;
}

.page-faq-deposit-withdrawal__list--ordered li::before {
    content: none;
}

.page-faq-deposit-withdrawal__list--ordered li {
    padding-left: 0;
}

.page-faq-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-faq-deposit-withdrawal__button {
    display: inline-block;
    background-color: var(--page-faq-deposit-withdrawal-primary-color);
    color: var(--page-faq-deposit-withdrawal-white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.page-faq-deposit-withdrawal__button:hover {
    background-color: var(--page-faq-deposit-withdrawal-secondary-color);
    color: var(--page-faq-deposit-withdrawal-dark-text);
}

.page-faq-deposit-withdrawal__section--conclusion {
    text-align: center;
    background-color: var(--page-faq-deposit-withdrawal-primary-color);
    color: var(--page-faq-deposit-withdrawal-white);
    padding: 80px 0;
}

.page-faq-deposit-withdrawal__section--conclusion .page-faq-deposit-withdrawal__section-title {
    color: var(--page-faq-deposit-withdrawal-white);
}

.page-faq-deposit-withdrawal__section--conclusion .page-faq-deposit-withdrawal__section-title::after {
    background-color: var(--page-faq-deposit-withdrawal-secondary-color);
}

.page-faq-deposit-withdrawal__section--conclusion .page-faq-deposit-withdrawal__text {
    color: var(--page-faq-deposit-withdrawal-white);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-faq-deposit-withdrawal__cta-button--final {
    background-color: var(--page-faq-deposit-withdrawal-secondary-color);
    color: var(--page-faq-deposit-withdrawal-dark-text);
    border-color: var(--page-faq-deposit-withdrawal-secondary-color);
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-faq-deposit-withdrawal__cta-button--final:hover {
    background-color: var(--page-faq-deposit-withdrawal-white);
    border-color: var(--page-faq-deposit-withdrawal-white);
    color: var(--page-faq-deposit-withdrawal-primary-color);
}

.page-faq-deposit-withdrawal a {
    color: var(--page-faq-deposit-withdrawal-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq-deposit-withdrawal a:hover {
    color: var(--page-faq-deposit-withdrawal-secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__title {
        font-size: 2em;
    }
    .page-faq-deposit-withdrawal__subtitle {
        font-size: 1em;
    }
    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__sub-title {
        font-size: 1.4em;
    }
    .page-faq-deposit-withdrawal__cta-button,
    .page-faq-deposit-withdrawal__cta-button--final {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-deposit-withdrawal__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal__title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__subtitle {
        font-size: 0.9em;
    }
    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.6em;
    }
    .page-faq-deposit-withdrawal__sub-title {
        font-size: 1.2em;
    }
    .page-faq-deposit-withdrawal__list li {
        font-size: 0.95em;
    }
    .page-faq-deposit-withdrawal__content-block {
        padding: 20px;
    }
}