/* style/expert-qa-common-questions.css */
.page-expert-qa-common-questions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-expert-qa-common-questions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-expert-qa-common-questions__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for text contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-expert-qa-common-questions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-expert-qa-common-questions__hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 15px;
    color: #e9ecef;
}

.page-expert-qa-common-questions__content-section {
    padding: 60px 0;
}

.page-expert-qa-common-questions__faq-list {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-expert-qa-common-questions__faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.page-expert-qa-common-questions__faq-item:last-child {
    border-bottom: none;
}

.page-expert-qa-common-questions__faq-question {
    margin: 0;
}

.page-expert-qa-common-questions__accordion-toggle {
    width: 100%;
    background-color: #ffffff;
    color: #007BFF; /* Primary blue for questions */
    border: none;
    padding: 20px 25px;
    font-size: 1.2em;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600;
}

.page-expert-qa-common-questions__accordion-toggle:hover {
    background-color: #e9f5ff;
}

.page-expert-qa-common-questions__accordion-toggle[aria-expanded="true"] {
    background-color: #007BFF;
    color: #ffffff;
}

.page-expert-qa-common-questions__accordion-toggle[aria-expanded="true"]:hover {
    background-color: #0056b3;
}

.page-expert-qa-common-questions__toggle-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-expert-qa-common-questions__accordion-toggle[aria-expanded="true"] .page-expert-qa-common-questions__toggle-icon {
    transform: rotate(45deg);
}

.page-expert-qa-common-questions__faq-answer {
    padding: 0 25px 20px;
    background-color: #fdfdfd;
    border-top: 1px solid #e0e0e0;
    display: none;
    overflow: hidden;
    color: #495057;
    font-size: 1em;
}

.page-expert-qa-common-questions__faq-answer p {
    margin-bottom: 15px;
}

.page-expert-qa-common-questions__faq-answer h3 {
    color: #007BFF;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-expert-qa-common-questions__faq-answer ol,
.page-expert-qa-common-questions__faq-answer ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-expert-qa-common-questions__faq-answer li {
    margin-bottom: 8px;
}

.page-expert-qa-common-questions__faq-answer a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
}

.page-expert-qa-common-questions__faq-answer a:hover {
    text-decoration: underline;
}

.page-expert-qa-common-questions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-expert-qa-common-questions__cta-section {
    background-color: #007BFF; /* Primary blue */
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-expert-qa-common-questions__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-expert-qa-common-questions__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e9ecef;
}

.page-expert-qa-common-questions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-expert-qa-common-questions__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-expert-qa-common-questions__btn--primary {
    background-color: #FFC107; /* Secondary color for primary action */
    color: #0056b3; /* Darker blue for contrast */
    border: 2px solid #FFC107;
}

.page-expert-qa-common-questions__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #003e80;
    transform: translateY(-2px);
}

.page-expert-qa-common-questions__btn--secondary {
    background-color: transparent;
    color: #FFC107; /* Secondary color for secondary action */
    border: 2px solid #FFC107;
}

.page-expert-qa-common-questions__btn--secondary:hover {
    background-color: #FFC107;
    color: #0056b3;
    transform: translateY(-2px);
}

.page-expert-qa-common-questions__responsible-gambling-note {
    margin-top: 40px;
    font-size: 0.95em;
    color: #cce5ff; /* Lighter blue for subtle text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-expert-qa-common-questions__hero-title {
        font-size: 2.5em;
    }
    .page-expert-qa-common-questions__cta-title {
        font-size: 2em;
    }
    .page-expert-qa-common-questions__accordion-toggle {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-expert-qa-common-questions__faq-answer {
        padding: 0 20px 15px;
    }
    .page-expert-qa-common-questions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-expert-qa-common-questions__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-expert-qa-common-questions__hero-title {
        font-size: 2em;
    }
    .page-expert-qa-common-questions__hero-description {
        font-size: 1em;
    }
    .page-expert-qa-common-questions__cta-title {
        font-size: 1.8em;
    }
    .page-expert-qa-common-questions__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}