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

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

.page-expert-predictions__hero {
    background: linear-gradient(135deg, #003366 0%, #0a4d80 100%); /* Deeper blue to slightly lighter blue */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0.8;
    z-index: 0;
}

.page-expert-predictions__hero .page-expert-predictions__container {
    position: relative;
    z-index: 1;
}

.page-expert-predictions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

.page-expert-predictions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-expert-predictions__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-expert-predictions__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-expert-predictions__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.page-expert-predictions__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.page-expert-predictions__section {
    padding: 80px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-expert-predictions__section:nth-of-type(even) {
    background-color: #f0f5fa; /* A very light blue tint */
}

.page-expert-predictions__section-title {
    font-size: 2.8em;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-expert-predictions__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.page-expert-predictions__feature-item, .page-expert-predictions__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #003366;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

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

.page-expert-predictions__feature-icon, .page-expert-predictions__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

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

.page-expert-predictions__feature-text, .page-expert-predictions__benefit-text {
    font-size: 1em;
    color: #666;
}

.page-expert-predictions__area-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

.page-expert-predictions__area-item--reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions__area-image {
    width: 40%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions__area-content {
    flex: 1;
}

.page-expert-predictions__area-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 20px;
}

.page-expert-predictions__area-text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
}

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

.page-expert-predictions__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.page-expert-predictions__list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-weight: bold;
}

.page-expert-predictions__area-cta {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-expert-predictions__btn--text {
    background-color: #003366;
    color: #FFCC00;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
}

.page-expert-predictions__btn--text:hover {
    background-color: #0a4d80;
    color: #fff;
}

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

.page-expert-predictions__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid #FFCC00;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

.page-expert-predictions__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFCC00;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-expert-predictions__step-text {
    font-size: 1em;
    color: #666;
}

.page-expert-predictions__cta-bottom {
    background: #003366;
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.page-expert-predictions__cta-bottom .page-expert-predictions__section-title {
    color: #FFCC00;
}

.page-expert-predictions__cta-bottom .page-expert-predictions__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-expert-predictions__cta-bottom .page-expert-predictions__section-title::after {
    background-color: #FFCC00;
}

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

.page-expert-predictions__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-expert-predictions__related-articles {
    padding-bottom: 80px;
}

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

.page-expert-predictions__article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

.page-expert-predictions__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #FFCC00;
}

.page-expert-predictions__article-title {
    font-size: 1.5em;
    color: #003366;
    padding: 20px 20px 10px;
}

.page-expert-predictions__article-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-expert-predictions__btn--read-more {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    text-align: center;
    background-color: #003366;
    color: #FFCC00;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-expert-predictions__btn--read-more:hover {
    background-color: #0a4d80;
    color: #fff;
}

.highlight-text {
    color: #FFCC00;
    font-weight: bold;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-expert-predictions__hero-title {
        font-size: 3em;
    }
    .page-expert-predictions__section-title {
        font-size: 2.5em;
    }
    .page-expert-predictions__area-item {
        flex-direction: column;
        text-align: center;
    }
    .page-expert-predictions__area-item--reverse {
        flex-direction: column;
    }
    .page-expert-predictions__area-image {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
    }
    .page-expert-predictions__area-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__hero {
        padding: 80px 0;
    }
    .page-expert-predictions__hero-title {
        font-size: 2.5em;
    }
    .page-expert-predictions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions__section {
        padding: 60px 0;
    }
    .page-expert-predictions__section-title {
        font-size: 2em;
    }
    .page-expert-predictions__section-description {
        font-size: 1em;
    }
    .page-expert-predictions__feature-grid, .page-expert-predictions__benefits-grid, .page-expert-predictions__process-steps, .page-expert-predictions__article-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-expert-predictions__hero-cta, .page-expert-predictions__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-expert-predictions__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-expert-predictions__btn--read-more {
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .page-expert-predictions__hero-title {
        font-size: 2em;
    }
    .page-expert-predictions__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions__btn {
        width: 90%;
    }
    .page-expert-predictions__area-title {
        font-size: 1.8em;
    }
}