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

/* Base styles for the page content */
.page-industry-news-future-outlook {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-industry-news-future-outlook__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-future-outlook__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-industry-news-future-outlook__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-industry-news-future-outlook__hero .page-industry-news-future-outlook__container {
    position: relative;
    z-index: 1;
}

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

.page-industry-news-future-outlook__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

.page-industry-news-future-outlook__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news-future-outlook__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-industry-news-future-outlook__section--alt {
    background-color: #f0f4f8; /* Lighter blue-gray */
}

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

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

.page-industry-news-future-outlook__sub-section-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-industry-news-future-outlook__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-industry-news-future-outlook__text strong {
    color: #003366;
    font-weight: bold;
}

.page-industry-news-future-outlook__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-industry-news-future-outlook__list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.page-industry-news-future-outlook__list li::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-industry-news-future-outlook__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-future-outlook__call-to-action {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-future-outlook__call-to-action .page-industry-news-future-outlook__section-title {
    color: #FFD700;
}

.page-industry-news-future-outlook__call-to-action .page-industry-news-future-outlook__text {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-industry-news-future-outlook__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-industry-news-future-outlook__cta-button--primary {
    background-color: #FFD700;
    color: #003366;
}

.page-industry-news-future-outlook__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-industry-news-future-outlook__cta-button--secondary {
    background-color: #004d99; /* Slightly lighter blue */
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-industry-news-future-outlook__cta-button--secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-future-outlook__title {
        font-size: 2.5em;
    }

    .page-industry-news-future-outlook__subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-future-outlook__section-title {
        font-size: 2em;
    }

    .page-industry-news-future-outlook__sub-section-title {
        font-size: 1.5em;
    }

    .page-industry-news-future-outlook__text, .page-industry-news-future-outlook__list li {
        font-size: 1em;
    }

    .page-industry-news-future-outlook__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-future-outlook__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-industry-news-future-outlook__title {
        font-size: 2em;
    }

    .page-industry-news-future-outlook__subtitle {
        font-size: 1em;
    }

    .page-industry-news-future-outlook__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-future-outlook__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}