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

/* Base styles for the page content */
.page-faq-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #2C3E50; /* Main dark color for text */
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-faq-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-faq-deposit-withdrawal__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #F39C12; /* Auxiliary color for emphasis */
    font-weight: bold;
}

.page-faq-deposit-withdrawal__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.page-faq-deposit-withdrawal__hero-button {
    display: inline-block;
    background-color: #F39C12; /* Auxiliary color for buttons */
    color: #2C3E50; /* Dark text on bright button */
    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: none;
    cursor: pointer;
}

.page-faq-deposit-withdrawal__hero-button:hover {
    background-color: #e08e0b; /* Slightly darker auxiliary on hover */
    transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-faq-deposit-withdrawal__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

/* General Section Styling */
.page-faq-deposit-withdrawal__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #2C3E50; /* Main dark color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-faq-deposit-withdrawal__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F39C12; /* Auxiliary color */
    border-radius: 2px;
}

.page-faq-deposit-withdrawal__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-faq-deposit-withdrawal__content-block {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-left: 5px solid #F39C12; /* Auxiliary color accent */
}

.page-faq-deposit-withdrawal__subsection-title {
    font-size: 1.8em;
    color: #2C3E50; /* Main dark color */
    margin-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
}

.page-faq-deposit-withdrawal__list,
.page-faq-deposit-withdrawal__list-ordered {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #34495e;
}

.page-faq-deposit-withdrawal__list-ordered {
    list-style-type: decimal;
}

.page-faq-deposit-withdrawal__list li,
.page-faq-deposit-withdrawal__list-ordered li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.page-faq-deposit-withdrawal__list li strong {
    color: #F39C12;
}

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

.page-faq-deposit-withdrawal__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq-deposit-withdrawal__cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto 20px auto;
    background-color: #F39C12; /* Auxiliary color */
    color: #2C3E50; /* Dark text on bright button */
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.page-faq-deposit-withdrawal__cta-button:hover {
    background-color: #e08e0b;
    transform: translateY(-3px);
}

.page-faq-deposit-withdrawal__cta-button--secondary {
    background-color: #2C3E50;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.page-faq-deposit-withdrawal__cta-button--secondary:hover {
    background-color: #34495e;
}

.page-faq-deposit-withdrawal__cta-button--tertiary {
    background-color: #ecf0f1;
    color: #2C3E50;
    border: 1px solid #2C3E50;
    box-shadow: none;
}

.page-faq-deposit-withdrawal__cta-button--tertiary:hover {
    background-color: #dcdfe4;
    border-color: #2C3E50;
}

/* Accordion for FAQ */
.page-faq-deposit-withdrawal__accordion {
    margin-top: 30px;
}

.page-faq-deposit-withdrawal__accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-faq-deposit-withdrawal__accordion-header {
    width: 100%;
    background-color: #F39C12; /* Auxiliary color */
    color: #2C3E50; /* Dark text on bright background */
    padding: 18px 25px;
    text-align: left;
    font-size: 1.25em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-faq-deposit-withdrawal__accordion-header:hover {
    background-color: #e08e0b;
}

.page-faq-deposit-withdrawal__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-faq-deposit-withdrawal__accordion-body {
    padding: 0 25px;
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq-deposit-withdrawal__accordion-body p {
    padding: 15px 0;
    margin-bottom: 0;
    color: #34495e;
}

.page-faq-deposit-withdrawal__accordion-body .page-faq-deposit-withdrawal__list {
    margin-top: 0;
    padding-bottom: 15px;
}

/* Contact Support Section */
.page-faq-deposit-withdrawal__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-faq-deposit-withdrawal__contact-list li {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    font-weight: bold;
    color: #2C3E50;
    border-left: 4px solid #F39C12;
    transition: transform 0.3s ease;
}

.page-faq-deposit-withdrawal__contact-list li:hover {
    transform: translateY(-5px);
}

/* Responsible Gaming Section */
.page-faq-deposit-withdrawal__responsible-gaming {
    background-color: #eaf1f6; /* Light background for contrast */
    text-align: center;
    padding: 80px 0;
}

.page-faq-deposit-withdrawal__icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2.5em;
    }

    .page-faq-deposit-withdrawal__section-title {
        font-size: 2em;
    }

    .page-faq-deposit-withdrawal__subsection-title {
        font-size: 1.5em;
    }

    .page-faq-deposit-withdrawal__contact-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__hero {
        padding: 60px 20px;
    }

    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2em;
    }

    .page-faq-deposit-withdrawal__hero-description {
        font-size: 1em;
    }

    .page-faq-deposit-withdrawal__section {
        padding: 40px 0;
    }

    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }

    .page-faq-deposit-withdrawal__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-faq-deposit-withdrawal__content-block {
        padding: 20px;
    }

    .page-faq-deposit-withdrawal__subsection-title {
        font-size: 1.3em;
    }

    .page-faq-deposit-withdrawal__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq-deposit-withdrawal__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 1.8em;
    }

    .page-faq-deposit-withdrawal__section-title {
        font-size: 1.5em;
    }

    .page-faq-deposit-withdrawal__subsection-title {
        font-size: 1.2em;
    }

    .page-faq-deposit-withdrawal__list,
    .page-faq-deposit-withdrawal__list-ordered {
        margin-left: 15px;
    }

    .page-faq-deposit-withdrawal__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }
}