/* style/resources-8kbet-customer-support.css */

.page-resources-8kbet-customer-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-resources-8kbet-customer-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-8kbet-customer-support__hero-section {
    background: linear-gradient(135deg, #0A2463, #3B5998);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-8kbet-customer-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-8kbet-customer-support__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-resources-8kbet-customer-support__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.page-resources-8kbet-customer-support__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    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;
    border: 2px solid #FFD700;
}

.page-resources-8kbet-customer-support__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-resources-8kbet-customer-support__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-resources-8kbet-customer-support__article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-8kbet-customer-support__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-8kbet-customer-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-8kbet-customer-support__article-content p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #444;
}

.page-resources-8kbet-customer-support__article-content a {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-8kbet-customer-support__article-content a:hover {
    color: #FFD700;
    text-decoration: none;
}

/* Channel Grid */
.page-resources-8kbet-customer-support__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-resources-8kbet-customer-support__channel-card {
    background-color: #f2f4f7;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-8kbet-customer-support__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.page-resources-8kbet-customer-support__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.page-resources-8kbet-customer-support__card-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-resources-8kbet-customer-support__card-button {
    display: inline-block;
    background-color: #0A2463;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    border: 1px solid #0A2463;
}

.page-resources-8kbet-customer-support__card-button:hover {
    background-color: #1a3a7a;
    color: #fff;
}

/* FAQ Section */
.page-resources-8kbet-customer-support__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-8kbet-customer-support__faq-container {
    margin-top: 40px;
}

.page-resources-8kbet-customer-support__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-8kbet-customer-support__faq-question {
    font-size: 1.25em;
    color: #0A2463;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    background-color: #eaf1f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-8kbet-customer-support__faq-question:hover {
    background-color: #dbe7f3;
}

.page-resources-8kbet-customer-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    font-weight: bold;
}

.page-resources-8kbet-customer-support__faq-question.active::after {
    content: '-';
}

.page-resources-8kbet-customer-support__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-8kbet-customer-support__faq-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-resources-8kbet-customer-support__faq-answer p {
    margin-bottom: 0;
}

/* Commitment List */
.page-resources-8kbet-customer-support__commitment-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-resources-8kbet-customer-support__commitment-list li {
    background-color: #f2f4f7;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-8kbet-customer-support__commitment-list li strong {
    color: #0A2463;
}

/* CTA Group */
.page-resources-8kbet-customer-support__cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-resources-8kbet-customer-support__cta-group .page-resources-8kbet-customer-support__cta-button {
    margin: 0 15px;
}

.page-resources-8kbet-customer-support__cta-button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
}

.page-resources-8kbet-customer-support__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-resources-8kbet-customer-support__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border-color: #0A2463;
}

.page-resources-8kbet-customer-support__cta-button--secondary:hover {
    background-color: #1a3a7a;
    border-color: #1a3a7a;
    color: #fff;
}

.page-resources-8kbet-customer-support__back-link {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
}

.page-resources-8kbet-customer-support__back-link .page-resources-8kbet-customer-support__link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-8kbet-customer-support__back-link .page-resources-8kbet-customer-support__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Footer */
.page-resources-8kbet-customer-support__footer {
    background-color: #0A2463;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    margin-top: 60px;
}

.page-resources-8kbet-customer-support__footer p {
    margin: 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-8kbet-customer-support__hero-title {
        font-size: 2.5em;
    }

    .page-resources-8kbet-customer-support__hero-description {
        font-size: 1em;
    }

    .page-resources-8kbet-customer-support__section-title {
        font-size: 2em;
    }

    .page-resources-8kbet-customer-support__channel-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-8kbet-customer-support__cta-group .page-resources-8kbet-customer-support__cta-button {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-resources-8kbet-customer-support__hero-title {
        font-size: 2em;
    }

    .page-resources-8kbet-customer-support__hero-section {
        padding: 60px 0;
    }

    .page-resources-8kbet-customer-support__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-8kbet-customer-support__section-title {
        font-size: 1.8em;
    }

    .page-resources-8kbet-customer-support__article-content p,
    .page-resources-8kbet-customer-support__commitment-list li {
        font-size: 0.95em;
    }

    .page-resources-8kbet-customer-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}