/* style/expert-predictions.css */

/* General Styles */
.page-expert-predictions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF;
}

.page-expert-predictions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-expert-predictions__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-expert-predictions__sub-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-expert-predictions__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #555555;
}

.page-expert-predictions__btn-primary,
.page-expert-predictions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-expert-predictions__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
    margin-right: 15px;
}

.page-expert-predictions__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-expert-predictions__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-expert-predictions__btn-secondary:hover {
    background-color: #e0f2f7;
    color: #26A9E0;
}

.page-expert-predictions__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-expert-predictions__list li {
    margin-bottom: 10px;
}

/* Hero Section */
.page-expert-predictions__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
    background-color: #26A9E0;
}

.page-expert-predictions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-expert-predictions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-expert-predictions__hero-section .page-expert-predictions__container {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 900px;
}

.page-expert-predictions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-expert-predictions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-expert-predictions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Styling */
.page-expert-predictions__introduction-section,
.page-expert-predictions__factors-section,
.page-expert-predictions__betting-strategy,
.page-expert-predictions__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-expert-predictions__methodology-section,
.page-expert-predictions__featured-analysis,
.page-expert-predictions__benefits-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
}

/* Methodology Section */
.page-expert-predictions__methodology-section .page-expert-predictions__section-title,
.page-expert-predictions__methodology-section .page-expert-predictions__section-description {
    color: #FFFFFF;
}

.page-expert-predictions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-expert-predictions__method-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-expert-predictions__method-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-expert-predictions__method-card .page-expert-predictions__card-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-expert-predictions__method-card .page-expert-predictions__card-title {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-expert-predictions__method-card p {
    font-size: 1em;
    color: #f0f0f0;
}

/* Featured Analysis Section */
.page-expert-predictions__featured-analysis .page-expert-predictions__section-title,
.page-expert-predictions__featured-analysis .page-expert-predictions__section-description {
    color: #FFFFFF;
}

.page-expert-predictions__analysis-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
}

.page-expert-predictions__analysis-card .page-expert-predictions__card-title {
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
}

.page-expert-predictions__analysis-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.page-expert-predictions__analysis-content .page-expert-predictions__card-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px auto;
    display: block;
}

.page-expert-predictions__analysis-content h4 {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-expert-predictions__analysis-content p {
    color: #f0f0f0;
    margin-bottom: 10px;
}

.page-expert-predictions__analysis-content .page-expert-predictions__btn-primary {
    margin-top: 20px;
    margin-right: 0;
    width: auto;
    align-self: center;
}

/* Benefits Section */
.page-expert-predictions__benefits-section .page-expert-predictions__section-title {
    color: #FFFFFF;
}

.page-expert-predictions__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-expert-predictions__benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-expert-predictions__benefit-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-expert-predictions__benefit-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-expert-predictions__benefit-title {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-expert-predictions__benefit-item p {
    color: #f0f0f0;
}

.page-expert-predictions__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* FAQ Section */
.page-expert-predictions__faq-section .page-expert-predictions__section-title {
    color: #26A9E0;
}

.page-expert-predictions__faq-list {
    margin-top: 50px;
}

.page-expert-predictions__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-expert-predictions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.page-expert-predictions__faq-question:hover {
    background-color: #f0f0f0;
}

.page-expert-predictions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-expert-predictions__faq-item.active .page-expert-predictions__faq-toggle {
    transform: rotate(45deg);
}

.page-expert-predictions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-expert-predictions__faq-item.active .page-expert-predictions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 20px;
}

.page-expert-predictions__faq-answer p {
    margin-bottom: 10px;
}

/* Image specific CSS */
.page-expert-predictions img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-expert-predictions__content-image {
    margin: 40px auto;
    display: block;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-expert-predictions__hero-title {
        font-size: 3em;
    }

    .page-expert-predictions__hero-description {
        font-size: 1.2em;
    }

    .page-expert-predictions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-expert-predictions__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure content is below header on mobile */
    }

    .page-expert-predictions__hero-title {
        font-size: 2.2em;
    }

    .page-expert-predictions__hero-description {
        font-size: 1em;
    }

    .page-expert-predictions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-expert-predictions__btn-primary,
    .page-expert-predictions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0;
        padding: 12px 20px;
    }

    .page-expert-predictions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-expert-predictions__sub-title {
        font-size: 1.5em;
    }

    .page-expert-predictions__introduction-section,
    .page-expert-predictions__methodology-section,
    .page-expert-predictions__factors-section,
    .page-expert-predictions__featured-analysis,
    .page-expert-predictions__betting-strategy,
    .page-expert-predictions__benefits-section,
    .page-expert-predictions__faq-section {
        padding: 60px 0;
    }

    .page-expert-predictions__container,
    .page-expert-predictions__section,
    .page-expert-predictions__card,
    .page-expert-predictions__analysis-card,
    .page-expert-predictions__method-card,
    .page-expert-predictions__benefit-item,
    .page-expert-predictions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-expert-predictions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-expert-predictions__analysis-content {
        flex-direction: column;
        align-items: center;
    }

    .page-expert-predictions__analysis-card {
        padding: 20px;
    }

    .page-expert-predictions__analysis-content .page-expert-predictions__card-image {
        margin-bottom: 20px;
    }

    .page-expert-predictions__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-expert-predictions__faq-answer {
        padding: 0 15px;
    }

    .page-expert-predictions__faq-item.active .page-expert-predictions__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions__hero-title {
        font-size: 1.8em;
    }

    .page-expert-predictions__hero-description {
        font-size: 0.9em;
    }

    .page-expert-predictions__section-title {
        font-size: 1.5em;
    }

    .page-expert-predictions__sub-title {
        font-size: 1.3em;
    }
}

/* Color Contrast Fixes (if needed, based on body background being light) */
.page-expert-predictions__dark-bg {
    color: #ffffff; /* Deep blue background, white text */
}

.page-expert-predictions__light-bg {
    color: #333333; /* White background, dark grey text */
}

.page-expert-predictions__text-block h1,
.page-expert-predictions__text-block h2,
.page-expert-predictions__text-block h3,
.page-expert-predictions__text-block h4,
.page-expert-predictions__text-block h5,
.page-expert-predictions__text-block h6 {
    color: #26A9E0;
}

.page-expert-predictions__dark-section .page-expert-predictions__text-block h1,
.page-expert-predictions__dark-section .page-expert-predictions__text-block h2,
.page-expert-predictions__dark-section .page-expert-predictions__text-block h3,
.page-expert-predictions__dark-section .page-expert-predictions__text-block h4,
.page-expert-predictions__dark-section .page-expert-predictions__text-block h5,
.page-expert-predictions__dark-section .page-expert-predictions__text-block h6 {
    color: #FFFFFF;
}