/* style/industry-news-global-market-analysis.css */
.page-industry-news-global-market-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-industry-news-global-market-analysis__hero {
    background: linear-gradient(135deg, #1A2A4A 0%, #3a4b6b 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-global-market-analysis__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-industry-news-global-market-analysis__pulse 4s infinite alternate;
}

.page-industry-news-global-market-analysis__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-industry-news-global-market-analysis__pulse 5s infinite alternate reverse;
}

@keyframes page-industry-news-global-market-analysis__pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-industry-news-global-market-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-industry-news-global-market-analysis__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-industry-news-global-market-analysis__title .highlight {
    color: #FFFFFF;
}

.page-industry-news-global-market-analysis__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-news-global-market-analysis__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A2A4A; /* Dark blue text on gold button */
    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-global-market-analysis__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-global-market-analysis__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.page-industry-news-global-market-analysis__section--alt {
    background-color: #f0f4f8; /* Lighter background for alternating sections */
}

.page-industry-news-global-market-analysis__section-title {
    font-size: 2.5em;
    color: #1A2A4A; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-industry-news-global-market-analysis__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-news-global-market-analysis__sub-section-title {
    font-size: 1.8em;
    color: #1A2A4A;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-industry-news-global-market-analysis__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.page-industry-news-global-market-analysis__content-block:nth-child(even) {
    flex-direction: row-reverse;
}

.page-industry-news-global-market-analysis__content-block p,
.page-industry-news-global-market-analysis__content-block ul {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
    color: #444;
}

.page-industry-news-global-market-analysis__content-block p .keyword {
    font-weight: bold;
    color: #1A2A4A;
}

.page-industry-news-global-market-analysis__content-block p .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-industry-news-global-market-analysis__image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-industry-news-global-market-analysis__list {
    list-style: none;
    padding-left: 0;
}

.page-industry-news-global-market-analysis__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-industry-news-global-market-analysis__list li::before {
    content: '✔';
    color: #FFD700; /* Gold checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-industry-news-global-market-analysis__list li strong {
    color: #1A2A4A;
}

.page-industry-news-global-market-analysis__cta-section {
    background-color: #1A2A4A; /* Dark blue background */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-global-market-analysis__cta-section .page-industry-news-global-market-analysis__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-industry-news-global-market-analysis__cta-section .page-industry-news-global-market-analysis__section-title::after {
    background-color: #FFFFFF;
}

.page-industry-news-global-market-analysis__cta-text {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-news-global-market-analysis__cta-text .keyword {
    font-weight: bold;
    color: #FFD700;
}

.page-industry-news-global-market-analysis__cta-text .highlight {
    color: #FFFFFF;
}

.page-industry-news-global-market-analysis__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-industry-news-global-market-analysis__cta-button--secondary {
    background-color: #4CAF50; /* Example secondary color, adjust as needed or use a lighter shade of blue */
    color: #FFFFFF;
}

.page-industry-news-global-market-analysis__cta-button--secondary:hover {
    background-color: #45a049;
}

.page-industry-news-global-market-analysis__inline-link {
    color: #FFD700; /* Gold for inline links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news-global-market-analysis__inline-link:hover {
    color: #e6c200;
}

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

    .page-industry-news-global-market-analysis__subtitle,
    .page-industry-news-global-market-analysis__cta-text {
        font-size: 1.1em;
    }

    .page-industry-news-global-market-analysis__section-title {
        font-size: 2em;
    }

    .page-industry-news-global-market-analysis__sub-section-title {
        font-size: 1.5em;
    }

    .page-industry-news-global-market-analysis__content-block {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news-global-market-analysis__content-block p,
    .page-industry-news-global-market-analysis__content-block ul {
        min-width: unset;
    }

    .page-industry-news-global-market-analysis__image {
        max-width: 80%;
        margin-top: 20px;
    }

    .page-industry-news-global-market-analysis__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-global-market-analysis__cta-button {
        width: 80%;
    }
}

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

    .page-industry-news-global-market-analysis__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-global-market-analysis__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}

/* Styles for fade-in effect added by JS */
.page-industry-news-global-market-analysis .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-industry-news-global-market-analysis .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}