/* style/industry-news-trends-market-analysis.css */
.page-industry-news-trends-market-analysis {
    font-family: 'Arial', sans-serif;
    color: #E5E5E5; /* Light text for dark backgrounds */
    background-color: #1A1A1A; /* Main dark background */
    line-height: 1.6;
}

.page-industry-news-trends-market-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-industry-news-trends-market-analysis__hero {
    background: linear-gradient(135deg, #FFD700 0%, #1A1A1A 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #1A1A1A; /* Dark text for light background */
}

.page-industry-news-trends-market-analysis__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-industry-news-trends-market-analysis__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A1A1A; /* Dark text for contrast */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-industry-news-trends-market-analysis__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333333;
}

.page-industry-news-trends-market-analysis__hero-button {
    display: inline-block;
    background-color: #1A1A1A; /* Dark button */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #1A1A1A;
}

.page-industry-news-trends-market-analysis__hero-button:hover {
    background-color: #000000;
    color: #FFD700;
    border-color: #FFD700;
}

.page-industry-news-trends-market-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    overflow: hidden;
}

.page-industry-news-trends-market-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-industry-news-trends-market-analysis__section {
    padding: 60px 0;
    background-color: #1A1A1A;
    color: #E5E5E5;
}

.page-industry-news-trends-market-analysis__section--dark {
    background-color: #2a2a2a;
}

.page-industry-news-trends-market-analysis__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #FFD700;
    font-weight: bold;
}

.page-industry-news-trends-market-analysis__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #FFD700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-industry-news-trends-market-analysis__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E5E5E5;
}

.page-industry-news-trends-market-analysis__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trends-market-analysis__cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #FFD700;
    color: #1A1A1A;
    position: relative;
    overflow: hidden;
}

.page-industry-news-trends-market-analysis__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1A1A1A;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.page-industry-news-trends-market-analysis__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #333333;
    position: relative;
    z-index: 2;
}

.page-industry-news-trends-market-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.page-industry-news-trends-market-analysis__cta-button {
    display: inline-block;
    background-color: #1A1A1A;
    color: #FFD700;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #1A1A1A;
}

.page-industry-news-trends-market-analysis__cta-button:hover {
    background-color: #000000;
    transform: translateY(-3px);
    border-color: #000000;
}

.page-industry-news-trends-market-analysis__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
}

.page-industry-news-trends-market-analysis__cta-button--secondary:hover {
    background-color: #1A1A1A;
    color: #FFD700;
    border-color: #1A1A1A;
}

.page-industry-news-trends-market-analysis__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
    filter: saturate(0);
}

.page-industry-news-trends-market-analysis .highlight {
    color: #FFD700;
}

.page-industry-news-trends-market-analysis__section--dark .highlight {
    color: #FFD700;
}

@media (max-width: 768px) {
    .page-industry-news-trends-market-analysis__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news-trends-market-analysis__hero-description {
        font-size: 1em;
    }
    .page-industry-news-trends-market-analysis__section-title {
        font-size: 2em;
    }
    .page-industry-news-trends-market-analysis__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news-trends-market-analysis__cta-title {
        font-size: 2.2em;
    }
    .page-industry-news-trends-market-analysis__cta-description {
        font-size: 1.1em;
    }
    .page-industry-news-trends-market-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news-trends-market-analysis__hero-button,
    .page-industry-news-trends-market-analysis__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-trends-market-analysis__hero-title {
        font-size: 2em;
    }
    .page-industry-news-trends-market-analysis__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-trends-market-analysis__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news-trends-market-analysis__cta-title {
        font-size: 1.8em;
    }
}