/* style/resources-ev88-bet-common-problems-faq.css */

/* Base styles for the page content, ensuring it's contained */
.page-resources-ev88-bet-common-problems-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container for content sections to control width and centering */
.page-resources-ev88-bet-common-problems-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Styling */
.page-resources-ev88-bet-common-problems-faq__hero {
    background: linear-gradient(135deg, #004AAD, #0028ff);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-resources-ev88-bet-common-problems-faq__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-ev88-bet-common-problems-faq__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Call to Action Button (General) */
.page-resources-ev88-bet-common-problems-faq__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #004AAD;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-resources-ev88-bet-common-problems-faq__cta-button:hover {
    background-color: #e6c200;
    color: #0028ff;
    transform: translateY(-2px);
}

.page-resources-ev88-bet-common-problems-faq__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-resources-ev88-bet-common-problems-faq__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 25px;
}

/* Content Section Styling */
.page-resources-ev88-bet-common-problems-faq__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* FAQ List / Accordion Styling */
.page-resources-ev88-bet-common-problems-faq__faq-list {
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-resources-ev88-bet-common-problems-faq__faq-item {
    border-bottom: 1px solid #eee;
}

.page-resources-ev88-bet-common-problems-faq__faq-item:last-child {
    border-bottom: none;
}

.page-resources-ev88-bet-common-problems-faq__faq-question {
    padding: 25px 30px;
    font-size: 1.4em;
    font-weight: bold;
    color: #004AAD;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f4f8;
    transition: background-color 0.3s ease;
}

.page-resources-ev88-bet-common-problems-faq__faq-question:hover {
    background-color: #e0eaf2;
}

.page-resources-ev88-bet-common-problems-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-resources-ev88-bet-common-problems-faq__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-resources-ev88-bet-common-problems-faq__faq-answer {
    padding: 0 30px 20px;
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
}

.page-resources-ev88-bet-common-problems-faq__faq-answer.active {
    max-height: 1500px;
    padding: 20px 30px 30px;
}

.page-resources-ev88-bet-common-problems-faq__faq-answer p {
    margin-bottom: 15px;
    color: #444;
}

.page-resources-ev88-bet-common-problems-faq__faq-subquestion {
    font-size: 1.2em;
    color: #004AAD;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Image Styling within content */
.page-resources-ev88-bet-common-problems-faq__image-wrapper {
    margin: 25px 0;
    text-align: center;
}

.page-resources-ev88-bet-common-problems-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section at bottom */
.page-resources-ev88-bet-common-problems-faq__call-to-action {
    background-color: #004AAD;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 0;
}

.page-resources-ev88-bet-common-problems-faq__cta-heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-ev88-bet-common-problems-faq__cta-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Copyright */
.page-resources-ev88-bet-common-problems-faq__copyright {
    margin-top: 50px;
    font-size: 0.9em;
    color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-ev88-bet-common-problems-faq__title {
        font-size: 2em;
    }

    .page-resources-ev88-bet-common-problems-faq__subtitle {
        font-size: 1em;
    }

    .page-resources-ev88-bet-common-problems-faq__faq-question {
        font-size: 1.2em;
        padding: 20px 25px;
    }

    .page-resources-ev88-bet-common-problems-faq__faq-answer {
        padding: 0 25px 15px;
    }

    .page-resources-ev88-bet-common-problems-faq__faq-answer.active {
        padding: 15px 25px 20px;
    }

    .page-resources-ev88-bet-common-problems-faq__faq-subquestion {
        font-size: 1.1em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-resources-ev88-bet-common-problems-faq__cta-heading {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-resources-ev88-bet-common-problems-faq__title {
        font-size: 1.8em;
    }

    .page-resources-ev88-bet-common-problems-faq__hero {
        padding: 50px 0;
    }

    .page-resources-ev88-bet-common-problems-faq__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-resources-ev88-bet-common-problems-faq__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}