/* style/industry-insights-global-market-report.css */

:root {
    --primary-color: #0056B3;
    --secondary-color: #FFC107;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #004085; /* A darker shade of primary for background */
}

.page-industry-insights-global-market-report {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-industry-insights-global-market-report__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-insights-global-market-report__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004085 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-industry-insights-global-market-report__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-light);
}

.page-industry-insights-global-market-report__highlight {
    color: var(--secondary-color);
}

.page-industry-insights-global-market-report__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-insights-global-market-report__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    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-insights-global-market-report__cta-button:hover {
    background-color: #e6b000; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-industry-insights-global-market-report__cta-button--large {
    font-size: 1.4em;
    padding: 18px 35px;
}

.page-industry-insights-global-market-report__section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-industry-insights-global-market-report__section:last-of-type {
    border-bottom: none;
}

.page-industry-insights-global-market-report__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-insights-global-market-report__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-insights-global-market-report p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-industry-insights-global-market-report ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
}

.page-industry-insights-global-market-report ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-industry-insights-global-market-report a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-insights-global-market-report a:hover {
    color: #004085; /* Darker primary */
    text-decoration: underline;
}

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

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

    .page-industry-insights-global-market-report__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-insights-global-market-report__section-title {
        font-size: 2em;
    }

    .page-industry-insights-global-market-report__subsection-title {
        font-size: 1.5em;
    }

    .page-industry-insights-global-market-report p,
    .page-industry-insights-global-market-report ul li {
        font-size: 1em;
    }

    .page-industry-insights-global-market-report__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-insights-global-market-report__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-global-market-report__hero {
        padding: 60px 0;
    }

    .page-industry-insights-global-market-report__hero-title {
        font-size: 2em;
    }

    .page-industry-insights-global-market-report__section-title {
        font-size: 1.8em;
    }

    .page-industry-insights-global-market-report__subsection-title {
        font-size: 1.3em;
    }

    .page-industry-insights-global-market-report__container {
        padding: 0 15px;
    }
}