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

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

.page-expert-predictions-methodology__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-methodology__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-expert-predictions-methodology__pulse 15s infinite alternate;
}

@keyframes page-expert-predictions-methodology__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.page-expert-predictions-methodology__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-methodology__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-expert-predictions-methodology__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-expert-predictions-methodology__btn--primary {
    background-color: #ffc107;
    color: #333;
}

.page-expert-predictions-methodology__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-expert-predictions-methodology__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 1px solid #007bff;
}

.page-expert-predictions-methodology__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-expert-predictions-methodology__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-expert-predictions-methodology__section:last-of-type {
    border-bottom: none;
}

.page-expert-predictions-methodology__heading {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-expert-predictions-methodology__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-expert-predictions-methodology__sub-heading {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
}

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

.page-expert-predictions-methodology__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

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

.page-expert-predictions-methodology__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-expert-predictions-methodology__title {
        font-size: 2em;
    }

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

    .page-expert-predictions-methodology__heading {
        font-size: 1.8em;
    }

    .page-expert-predictions-methodology__sub-heading {
        font-size: 1.4em;
    }

    .page-expert-predictions-methodology__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-methodology__hero-section {
        padding: 60px 0;
    }

    .page-expert-predictions-methodology__title {
        font-size: 1.8em;
    }

    .page-expert-predictions-methodology__heading {
        font-size: 1.6em;
    }

    .page-expert-predictions-methodology__sub-heading {
        font-size: 1.2em;
    }

    .page-expert-predictions-methodology__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}