/* style/resources-industry-news-trends.css */
.page-resources-industry-news-trends {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
}

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

.page-resources-industry-news-trends__hero-section {
    background: linear-gradient(135deg, #003366, #1a4a7f);
    padding: 100px 0;
    text-align: center;
    color: #ffffff; /* High contrast for dark background */
}

.page-resources-industry-news-trends__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-industry-news-trends__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-industry-news-trends__section {
    padding: 60px 0;
}

.page-resources-industry-news-trends__intro-content {
    background-color: #f8f8f8;
}

.page-resources-industry-news-trends__content-block {
    background-color: #ffffff;
}

.page-resources-industry-news-trends__dark-bg {
    background-color: #003366; /* Main brand color */
    color: #ffffff; /* High contrast for dark background */
}

.page-resources-industry-news-trends__dark-bg .page-resources-industry-news-trends__section-title,
.page-resources-industry-news-trends__dark-bg .page-resources-industry-news-trends__sub-section-title {
    color: #FFCC00; /* Accent color for titles on dark background */
}

.page-resources-industry-news-trends__dark-bg .page-resources-industry-news-trends__paragraph,
.page-resources-industry-news-trends__dark-bg .page-resources-industry-news-trends__list li {
    color: #e0e0e0; /* Slightly lighter text for readability on dark background */
}

.page-resources-industry-news-trends__section-title {
    font-size: 2.5em;
    color: #003366; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-resources-industry-news-trends__sub-section-title {
    font-size: 1.8em;
    color: #003366; /* Main brand color */
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-industry-news-trends__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-resources-industry-news-trends__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-resources-industry-news-trends__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.page-resources-industry-news-trends__link {
    color: #003366; /* Main brand color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-resources-industry-news-trends__link:hover {
    text-decoration: underline;
    color: #FFCC00; /* Accent color on hover */
}

.page-resources-industry-news-trends__dark-bg .page-resources-industry-news-trends__link {
    color: #FFCC00; /* Accent color for links on dark background */
}

.page-resources-industry-news-trends__dark-bg .page-resources-industry-news-trends__link:hover {
    color: #ffffff; /* White on hover for dark background links */
}

.page-resources-industry-news-trends__call-to-action-section {
    background-color: #f0f8ff; /* Light background for CTA */
    text-align: center;
    padding: 80px 0;
}

.page-resources-industry-news-trends__call-to-action-section .page-resources-industry-news-trends__section-title {
    color: #003366;
}

.page-resources-industry-news-trends__button {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for primary button */
    color: #003366; /* Dark text for light button */
    padding: 15px 30px;
    margin: 10px;
    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 #FFCC00;
}

.page-resources-industry-news-trends__button:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    color: #001a33; /* Darker blue on hover */
}

.page-resources-industry-news-trends__button--secondary {
    background-color: transparent;
    color: #003366; /* Dark text for secondary button */
    border: 2px solid #003366;
}

.page-resources-industry-news-trends__button--secondary:hover {
    background-color: #003366;
    color: #FFCC00; /* Accent color on hover for secondary button */
}

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

    .page-resources-industry-news-trends__hero-subtitle,
    .page-resources-industry-news-trends__paragraph,
    .page-resources-industry-news-trends__list li {
        font-size: 1em;
    }

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

    .page-resources-industry-news-trends__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-industry-news-trends__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

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

    .page-resources-industry-news-trends__sub-section-title {
        font-size: 1.3em;
    }

    .page-resources-industry-news-trends__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}