/* style/industry-news-market-trends.css */
.page-industry-news-market-trends {
    font-family: Arial, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-industry-news-market-trends__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2a3a4c 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-industry-news-market-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-market-trends__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-market-trends__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    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-market-trends__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-industry-news-market-trends__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-industry-news-market-trends__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-industry-news-market-trends__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-market-trends__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-industry-news-market-trends__section h3 {
    font-size: 1.8em;
    color: #f5e6d0; /* Light text for subtitles */
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-industry-news-market-trends__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-industry-news-market-trends__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-industry-news-market-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-industry-news-market-trends__section ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-industry-news-market-trends__section ul li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-industry-news-market-trends__section ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-industry-news-market-trends__section ul li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
    color: #FFD700;
}

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

    .page-industry-news-market-trends__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-industry-news-market-trends__section h3 {
        font-size: 1.5em;
    }

    .page-industry-news-market-trends__section p,
    .page-industry-news-market-trends__section ul li {
        font-size: 1em;
    }
}

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

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

    .page-industry-news-market-trends__hero-subtitle {
        font-size: 0.9em;
    }

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

    .page-industry-news-market-trends__section {
        padding: 40px 0;
    }

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

    .page-industry-news-market-trends__section h3 {
        font-size: 1.3em;
    }
}