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

.page-expert-predictions__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-expert-predictions__hero-content {
    max-width: 800px;
    z-index: 1;
}

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

.page-expert-predictions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-expert-predictions__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-expert-predictions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-expert-predictions__btn--primary {
    background-color: #ffc107; /* Accent color */
    color: #0056b3; /* Darker primary for contrast */
    border: 2px solid #ffc107;
}

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

.page-expert-predictions__btn--secondary {
    background-color: transparent;
    color: #ffc107; /* Accent color */
    border: 2px solid #ffc107;
}

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

.page-expert-predictions__hero-image {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-top: 30px;
}

.page-expert-predictions__hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

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

.page-expert-predictions__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-expert-predictions__text {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #495057;
}

.page-expert-predictions__introduction .page-expert-predictions__text strong {
    color: #007bff;
}

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

.page-expert-predictions__advantage-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions__advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-expert-predictions__advantage-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-expert-predictions__process-step {
    background-color: #f0f8ff;
    border-left: 5px solid #007bff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-expert-predictions__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

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

.page-expert-predictions__detail-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-expert-predictions__detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions__detail-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e9ecef;
}

.page-expert-predictions__detail-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.3em;
    color: #007bff;
}

.page-expert-predictions__detail-item h3 a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-expert-predictions__detail-item h3 a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-expert-predictions__detail-description {
    padding: 0 20px 20px;
    color: #555;
    flex-grow: 1;
}

.page-expert-predictions__btn--text {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #ffc107;
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    border-top: 1px solid #e9ecef;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-expert-predictions__btn--text:hover {
    background-color: #e0a800;
    color: #003f80;
}

.page-expert-predictions__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-expert-predictions__list li {
    background-color: #f0f8ff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    color: #343a40;
}

.page-expert-predictions__list li strong {
    color: #0056b3;
}

.page-expert-predictions__cta {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-expert-predictions__cta-title {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
}

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

.page-expert-predictions__cta-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

.page-expert-predictions__cta-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-expert-predictions__faq-question {
    font-size: 1.2em;
    color: #007bff;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    background-color: #e9f5ff;
    border-bottom: 1px solid #cfe2ff;
    transition: background-color 0.3s ease;
}

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

.page-expert-predictions__faq-item p {
    padding: 15px 20px;
    color: #555;
    display: none;
    border-top: 1px solid #e9ecef;
    margin-top: -1px;
}

.page-expert-predictions__faq-item.active .page-expert-predictions__faq-question {
    background-color: #d0e7ff;
}

.page-expert-predictions__faq-item.active p {
    display: block;
}

.page-expert-predictions__text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-expert-predictions__text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-expert-predictions__disclaimer {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.page-expert-predictions__disclaimer .page-expert-predictions__section-title {
    color: #856404;
    margin-bottom: 20px;
}

.page-expert-predictions__disclaimer .page-expert-predictions__section-title::after {
    background-color: #856404;
}

.page-expert-predictions__disclaimer .page-expert-predictions__text {
    color: #856404;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-expert-predictions__hero {
        flex-direction: column;
        text-align: center;
    }
    .page-expert-predictions__hero-content, .page-expert-predictions__hero-image {
        max-width: 100%;
    }
    .page-expert-predictions__hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__hero-title {
        font-size: 2em;
    }
    .page-expert-predictions__hero-description {
        font-size: 1em;
    }
    .page-expert-predictions__section {
        padding: 40px 15px;
    }
    .page-expert-predictions__section-title {
        font-size: 1.6em;
    }
    .page-expert-predictions__grid, .page-expert-predictions__detail-list {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .page-expert-predictions__hero {
        padding: 60px 15px;
    }
    .page-expert-predictions__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-expert-predictions__btn {
        width: 100%;
    }
    .page-expert-predictions__section {
        padding: 30px 10px;
    }
    .page-expert-predictions__section-title {
        font-size: 1.4em;
        margin-bottom: 30px;
    }
    .page-expert-predictions__advantage-item, .page-expert-predictions__detail-item, .page-expert-predictions__process-step {
        padding: 20px;
    }
    .page-expert-predictions__cta {
        padding: 60px 15px;
    }
    .page-expert-predictions__cta-title {
        font-size: 1.8em;
    }
    .page-expert-predictions__cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-expert-predictions__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-expert-predictions__faq-item p {
        padding: 10px 15px;
    }
}