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

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

.page-deposit-withdrawal-processing-times__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-processing-times__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: rotate(20deg);
    opacity: 0.8;
}

.page-deposit-withdrawal-processing-times__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for highlight */
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-processing-times__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-processing-times__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-processing-times__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-processing-times__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 30px;
}

.page-deposit-withdrawal-processing-times__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 60px;
}

.page-deposit-withdrawal-processing-times__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-deposit-withdrawal-processing-times__bg-light {
    background-color: #f0f8ff; /* Lighter blue tint */
}

.page-deposit-withdrawal-processing-times__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-deposit-withdrawal-processing-times__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-deposit-withdrawal-processing-times__sub-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-deposit-withdrawal-processing-times__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-deposit-withdrawal-processing-times__highlight {
    color: #007BFF;
    font-weight: bold;
}

.page-deposit-withdrawal-processing-times__link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-processing-times__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-deposit-withdrawal-processing-times__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-processing-times__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-processing-times__card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-processing-times__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #007BFF;
    transition: height 0.3s ease;
}

.page-deposit-withdrawal-processing-times__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-processing-times__card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.page-deposit-withdrawal-processing-times__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.5));
}

.page-deposit-withdrawal-processing-times__card-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-deposit-withdrawal-processing-times__card-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-processing-times__list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-processing-times__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #444;
}

.page-deposit-withdrawal-processing-times__list li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-deposit-withdrawal-processing-times__ordered-list {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-deposit-withdrawal-processing-times__ordered-list li {
    margin-bottom: 8px;
}

.page-deposit-withdrawal-processing-times__note {
    background-color: #e0f7fa; /* Light cyan */
    border-left: 5px solid #007BFF;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    font-style: italic;
    color: #0056b3;
}

.page-deposit-withdrawal-processing-times__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-deposit-withdrawal-processing-times__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-deposit-withdrawal-processing-times__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-processing-times__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.5));
}

.page-deposit-withdrawal-processing-times__feature-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-deposit-withdrawal-processing-times__feature-text {
    font-size: 1em;
    color: #555;
}

.page-deposit-withdrawal-processing-times__cta-section {
    background: linear-gradient(135deg, #0056b3, #007BFF);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-processing-times__cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: rotate(-20deg);
    opacity: 0.8;
}

.page-deposit-withdrawal-processing-times__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-processing-times__cta-section .page-deposit-withdrawal-processing-times__paragraph {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.page-deposit-withdrawal-processing-times__faq-accordion {
    margin-top: 40px;
}

.page-deposit-withdrawal-processing-times__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-processing-times__faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2em;
    color: #007BFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-processing-times__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-processing-times__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-deposit-withdrawal-processing-times__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fcfdff;
    color: #555;
}

.page-deposit-withdrawal-processing-times__faq-answer p {
    margin: 15px 0;
}

.page-deposit-withdrawal-processing-times__faq-question.active + .page-deposit-withdrawal-processing-times__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-bottom: 20px;
}

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

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

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

    .page-deposit-withdrawal-processing-times__sub-title {
        font-size: 1.5em;
    }

    .page-deposit-withdrawal-processing-times__card-grid,
    .page-deposit-withdrawal-processing-times__feature-grid {
        grid-template-columns: 1fr;
    }

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

    .page-deposit-withdrawal-processing-times__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-processing-times__hero {
        padding: 60px 0;
    }

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

    .page-deposit-withdrawal-processing-times__hero-subtitle {
        font-size: 0.9em;
    }

    .page-deposit-withdrawal-processing-times__section {
        padding: 40px 0;
    }

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

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

    .page-deposit-withdrawal-processing-times__card,
    .page-deposit-withdrawal-processing-times__feature-item {
        padding: 20px;
    }

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