/* style/deposit-withdrawal-faq.css */
.page-deposit-withdrawal-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-deposit-withdrawal-faq__hero-section {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-deposit-withdrawal-faq__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    opacity: 0.3;
    animation: page-deposit-withdrawal-faq__hero-animation 15s infinite linear;
}

@keyframes page-deposit-withdrawal-faq__hero-animation {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.page-deposit-withdrawal-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-faq__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-deposit-withdrawal-faq__btn {
    display: inline-block;
    padding: 12px 28px;
    margin: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-faq__btn--primary {
    background-color: #0056b3; /* Darker shade of primary for text contrast */
    color: #ffffff;
    border: 2px solid #0056b3;
}

.page-deposit-withdrawal-faq__btn--primary:hover {
    background-color: #003f80;
    border-color: #003f80;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-faq__btn--secondary {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-deposit-withdrawal-faq__btn--secondary:hover {
    background-color: #f0f8ff;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-faq__btn--accent {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-deposit-withdrawal-faq__btn--accent:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-faq__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

/* Content Section */
.page-deposit-withdrawal-faq__content-section {
    padding: 60px 0;
}

.page-deposit-withdrawal-faq__faq-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Main content and sidebar */
    gap: 40px;
}

.page-deposit-withdrawal-faq__faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.page-deposit-withdrawal-faq__faq-item:last-child {
    margin-bottom: 0;
}

.page-deposit-withdrawal-faq__faq-title {
    color: #007bff;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 10px;
}

.page-deposit-withdrawal-faq__faq-intro {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
}

.page-deposit-withdrawal-faq__sub-title {
    color: #0056b3;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-faq__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-deposit-withdrawal-faq__list--ordered {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-deposit-withdrawal-faq__list li {
    margin-bottom: 10px;
}

.page-deposit-withdrawal-faq__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-faq__cta-group {
    margin-top: 30px;
    text-align: center;
}

/* Sidebar */
.page-deposit-withdrawal-faq__sidebar {
    grid-column: 2 / 3;
}

.page-deposit-withdrawal-faq__sidebar-block {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.page-deposit-withdrawal-faq__sidebar-title {
    color: #007bff;
    font-size: 1.6em;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.page-deposit-withdrawal-faq__sidebar-list {
    list-style-type: none;
    padding: 0;
}

.page-deposit-withdrawal-faq__sidebar-list li {
    margin-bottom: 10px;
}

.page-deposit-withdrawal-faq__sidebar-list a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-faq__sidebar-list a:hover {
    color: #ffc107;
}

.page-deposit-withdrawal-faq__image--sidebar {
    margin-top: 20px;
    border: 1px solid #eee;
}

.page-deposit-withdrawal-faq__sidebar-block--cta {
    text-align: center;
    background-color: #e6f3ff;
    border: 1px solid #b3d9ff;
}

/* Final CTA Section */
.page-deposit-withdrawal-faq__final-cta-section {
    background-color: #007bff;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.page-deposit-withdrawal-faq__final-cta-content {
    max-width: 900px;
}

.page-deposit-withdrawal-faq__final-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-faq__final-cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-deposit-withdrawal-faq__faq-grid {
        grid-template-columns: 1fr; /* Stack content and sidebar on smaller screens */
    }

    .page-deposit-withdrawal-faq__sidebar {
        grid-column: 1 / 2;
        margin-top: 30px;
    }

    .page-deposit-withdrawal-faq__hero-title {
        font-size: 2.5em;
    }

    .page-deposit-withdrawal-faq__hero-subtitle,
    .page-deposit-withdrawal-faq__final-cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-faq__hero-section,
    .page-deposit-withdrawal-faq__content-section,
    .page-deposit-withdrawal-faq__final-cta-section {
        padding: 40px 0;
    }

    .page-deposit-withdrawal-faq__hero-title {
        font-size: 2em;
    }

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

    .page-deposit-withdrawal-faq__sub-title {
        font-size: 1.3em;
    }

    .page-deposit-withdrawal-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-deposit-withdrawal-faq__btn--large {
        padding: 12px 30px;
        font-size: 1em;
    }
}

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

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

    .page-deposit-withdrawal-faq__faq-item,
    .page-deposit-withdrawal-faq__sidebar-block {
        padding: 20px;
    }

    .page-deposit-withdrawal-faq__final-cta-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-faq__final-cta-text {
        font-size: 0.95em;
    }
}