/* style/industry-insights-future-outlook.css */

.page-industry-insights-future-outlook {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-industry-insights-future-outlook__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-insights-future-outlook__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
    animation: page-industry-insights-future-outlook__rotate 20s linear infinite;
}

@keyframes page-industry-insights-future-outlook__rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-industry-insights-future-outlook__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-industry-insights-future-outlook__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-insights-future-outlook__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-industry-insights-future-outlook__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #003366; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-industry-insights-future-outlook__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-industry-insights-future-outlook__cta-button--accent {
    background-color: #CC0000; /* Red for emphasis */
    color: #FFFFFF;
    border-color: #CC0000;
}

.page-industry-insights-future-outlook__cta-button--accent:hover {
    background-color: #a30000;
    border-color: #a30000;
}

.page-industry-insights-future-outlook__content-section {
    padding: 60px 0;
}

.page-industry-insights-future-outlook__bg-light {
    background-color: #FFFFFF;
}

.page-industry-insights-future-outlook__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-insights-future-outlook__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-industry-insights-future-outlook__subsection-title {
    font-size: 1.8em;
    color: #004080; /* Slightly lighter blue for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-industry-insights-future-outlook p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444444;
}

.page-industry-insights-future-outlook__image-wrapper {
    text-align: center;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
}

.page-industry-insights-future-outlook__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-industry-insights-future-outlook__cta-buttons {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-industry-insights-future-outlook__hero-title {
        font-size: 2.5em;
    }
    .page-industry-insights-future-outlook__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-insights-future-outlook__section-title {
        font-size: 2em;
    }
    .page-industry-insights-future-outlook__subsection-title {
        font-size: 1.5em;
    }
    .page-industry-insights-future-outlook__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-industry-insights-future-outlook__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-future-outlook__hero-title {
        font-size: 2em;
    }
    .page-industry-insights-future-outlook__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-insights-future-outlook__section-title {
        font-size: 1.8em;
    }
    .page-industry-insights-future-outlook__subsection-title {
        font-size: 1.3em;
    }
    .page-industry-insights-future-outlook__cta-button {
        padding: 12px 20px;
        font-size: 1em;
        width: 90%;
    }
}