/* style/resources-777bet-payment-methods-faq.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Dodger Blue */
    --text-dark: #222222;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a202c;
    --border-color: #e0e0e0;
}

.page-resources-777bet-payment-methods-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Hero Section */
.page-resources-777bet-payment-methods-faq__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%); /* Darker blue gradient for better contrast */
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-777bet-payment-methods-faq__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-resources-777bet-payment-methods-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color); /* Gold title on dark blue background */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-777bet-payment-methods-faq__hero-description {
    font-size: 1.15em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-777bet-payment-methods-faq__hero-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-resources-777bet-payment-methods-faq__hero-btn:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-resources-777bet-payment-methods-faq__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-777bet-payment-methods-faq__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

/* FAQ Section */
.page-resources-777bet-payment-methods-faq__faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-resources-777bet-payment-methods-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-777bet-payment-methods-faq__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-resources-777bet-payment-methods-faq__faq-item {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.page-resources-777bet-payment-methods-faq__faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-777bet-payment-methods-faq__faq-question {
    font-size: 1.5em;
    color: var(--text-dark);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-resources-777bet-payment-methods-faq__faq-question:hover {
    background-color: #e8e8e8;
}

.page-resources-777bet-payment-methods-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-777bet-payment-methods-faq__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-777bet-payment-methods-faq__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    color: var(--text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-777bet-payment-methods-faq__faq-answer.open {
    max-height: 1000px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-resources-777bet-payment-methods-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-resources-777bet-payment-methods-faq__faq-answer ul,
.page-resources-777bet-payment-methods-faq__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-resources-777bet-payment-methods-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-resources-777bet-payment-methods-faq__faq-sub-question {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-resources-777bet-payment-methods-faq__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-resources-777bet-payment-methods-faq__cta-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-777bet-payment-methods-faq__cta-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-777bet-payment-methods-faq__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-777bet-payment-methods-faq__cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-resources-777bet-payment-methods-faq__cta-btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-777bet-payment-methods-faq__cta-text {
    margin-top: 25px;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

.page-resources-777bet-payment-methods-faq__cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-777bet-payment-methods-faq__cta-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-777bet-payment-methods-faq__hero {
        padding: 40px 15px;
    }

    .page-resources-777bet-payment-methods-faq__hero-title {
        font-size: 2.5em;
    }

    .page-resources-777bet-payment-methods-faq__hero-description {
        font-size: 1em;
    }

    .page-resources-777bet-payment-methods-faq__section-title {
        font-size: 2em;
    }

    .page-resources-777bet-payment-methods-faq__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }

    .page-resources-777bet-payment-methods-faq__faq-answer {
        font-size: 0.95em;
        padding: 15px 20px;
    }

    .page-resources-777bet-payment-methods-faq__faq-answer.open {
        padding: 15px 20px;
    }

    .page-resources-777bet-payment-methods-faq__cta-title {
        font-size: 1.8em;
    }

    .page-resources-777bet-payment-methods-faq__cta-description {
        font-size: 0.95em;
    }

    .page-resources-777bet-payment-methods-faq__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-777bet-payment-methods-faq__hero-title {
        font-size: 2em;
    }

    .page-resources-777bet-payment-methods-faq__section-title {
        font-size: 1.8em;
    }

    .page-resources-777bet-payment-methods-faq__faq-question {
        font-size: 1.1em;
    }

    .page-resources-777bet-payment-methods-faq__faq-sub-question {
        font-size: 1.1em;
    }
}