/* style/expert-predictions-accuracy-review.css */
.page-expert-predictions-accuracy-review {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-expert-predictions-accuracy-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-expert-predictions-accuracy-review__container--center-text {
    text-align: center;
}

.page-expert-predictions-accuracy-review__section-padding {
    padding: 60px 0;
}

.page-expert-predictions-accuracy-review__hero-section {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-expert-predictions-accuracy-review__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-accuracy-review__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.page-expert-predictions-accuracy-review__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for contrast */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-expert-predictions-accuracy-review__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Auxiliary color for highlight */
    border-radius: 2px;
}

.page-expert-predictions-accuracy-review__section-title--white {
    color: #fff;
}

.page-expert-predictions-accuracy-review__section-title--white::after {
    background-color: #fff;
}

.page-expert-predictions-accuracy-review__sub-section-title {
    font-size: 2em;
    color: #007bff; /* Primary blue */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.page-expert-predictions-accuracy-review__item-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-expert-predictions-accuracy-review__text--white {
    color: #fff;
}

.page-expert-predictions-accuracy-review__lead-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-expert-predictions-accuracy-review__list {
    list-style: disc inside;
    margin-bottom: 30px;
    padding-left: 20px;
}

.page-expert-predictions-accuracy-review__list li {
    margin-bottom: 10px;
    color: #333;
}

.page-expert-predictions-accuracy-review__bg--light-blue {
    background-color: #e6f2ff; /* Lighter shade of primary blue */
}

.page-expert-predictions-accuracy-review__bg--dark-blue {
    background-color: #0056b3; /* Darker shade of primary blue */
    color: #fff;
}

.page-expert-predictions-accuracy-review__bg--orange {
    background-color: #ffc107; /* Auxiliary color */
    color: #333;
}

.page-expert-predictions-accuracy-review__cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-expert-predictions-accuracy-review__cta-button--primary {
    background-color: #ff8400; /* Complementary color for emphasis */
    color: #fff;
    border: 2px solid #ff8400;
}

.page-expert-predictions-accuracy-review__cta-button--primary:hover {
    background-color: #e67500;
    border-color: #e67500;
    transform: translateY(-3px);
}

.page-expert-predictions-accuracy-review__cta-button--secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-expert-predictions-accuracy-review__cta-button--secondary:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

.page-expert-predictions-accuracy-review__cta-button--white {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #fff;
}

.page-expert-predictions-accuracy-review__cta-button--white:hover {
    background-color: #f0f0f0;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-expert-predictions-accuracy-review__button-group {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-expert-predictions-accuracy-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-accuracy-review__image--full-width {
    width: 100%;
}

.page-expert-predictions-accuracy-review__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-accuracy-review__image--round {
    border-radius: 50%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid #ffc107;
}

.page-expert-predictions-accuracy-review__image--small {
    max-width: 400px;
}

.page-expert-predictions-accuracy-review__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions-accuracy-review__grid-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-accuracy-review__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions-accuracy-review__grid-item p {
    color: #555;
}

.page-expert-predictions-accuracy-review__callout-box {
    background-color: #e0f7fa; /* Light cyan for info */
    border-left: 5px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.page-expert-predictions-accuracy-review__callout-box--warning {
    background-color: #fff3e0; /* Light orange for warning */
    border-left: 5px solid #ffc107;
}

.page-expert-predictions-accuracy-review__callout-box h4 {
    color: #0056b3;
    margin-top: 0;
}

.page-expert-predictions-accuracy-review__callout-box--warning h4 {
    color: #b38705;
}

.page-expert-predictions-accuracy-review__callout-box p {
    color: #555;
}

.page-expert-predictions-accuracy-review__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions-accuracy-review__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-expert-predictions-accuracy-review__faq-answer {
    color: #555;
}

.page-expert-predictions-accuracy-review__faq-answer a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-expert-predictions-accuracy-review__faq-answer a:hover {
    text-decoration: underline;
}

.page-expert-predictions-accuracy-review__margin-top {
    margin-top: 40px !important;
}

@media (max-width: 768px) {
    .page-expert-predictions-accuracy-review__main-title {
        font-size: 2.5em;
    }

    .page-expert-predictions-accuracy-review__subtitle {
        font-size: 1.1em;
    }

    .page-expert-predictions-accuracy-review__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-accuracy-review__sub-section-title {
        font-size: 1.7em;
    }

    .page-expert-predictions-accuracy-review__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-expert-predictions-accuracy-review__section-padding {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-accuracy-review__main-title {
        font-size: 2em;
    }

    .page-expert-predictions-accuracy-review__subtitle {
        font-size: 1em;
    }

    .page-expert-predictions-accuracy-review__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-accuracy-review__sub-section-title {
        font-size: 1.5em;
    }

    .page-expert-predictions-accuracy-review__cta-button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .page-expert-predictions-accuracy-review__button-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-expert-predictions-accuracy-review__image--round {
        max-width: 180px;
        height: 180px;
    }
}