.page-news-industry-updates {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--background, #FFFFFF);
}

.page-news-industry-updates__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-news-industry-updates__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-news-industry-updates__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-news-industry-updates__hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 900px;
    padding: 20px;
}

.page-news-industry-updates__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Use yellow for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-industry-updates__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary,
.page-news-industry-updates__hero-cta {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Important for responsive buttons */
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__hero-cta {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
    margin-right: 15px;
}

.page-news-industry-updates__btn-primary:hover,
.page-news-industry-updates__hero-cta:hover {
    background-color: #e02a2a;
    border-color: #e02a2a;
}

.page-news-industry-updates__btn-secondary {
    background-color: #FFFFFF;
    color: #017439;
    border: 2px solid #017439;
}

.page-news-industry-updates__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

.page-news-industry-updates__section {
    padding: 60px 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-news-industry-updates__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-news-industry-updates__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-news-industry-updates__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
}

.page-news-industry-updates__dark-bg {
    background-color: #017439;
    color: #FFFFFF;
}

.page-news-industry-updates__dark-bg .page-news-industry-updates__section-title {
    color: #FFFFFF;
}

.page-news-industry-updates__dark-bg .page-news-industry-updates__section-title::after {
    background-color: #FFFF00;
}

.page-news-industry-updates__dark-section {
    background-color: #017439; /* Use brand main color for dark section */
    color: #ffffff; /* White text for dark background */
}

.page-news-industry-updates__dark-section .page-news-industry-updates__section-title {
    color: #ffffff;
}

.page-news-industry-updates__dark-section .page-news-industry-updates__section-title::after {
    background-color: #FFFF00;
}

.page-news-industry-updates__light-bg {
    background-color: #f8f8f8;
    color: #333333;
}

.page-news-industry-updates__grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-news-industry-updates__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-news-industry-updates__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__trend-item {
    margin-bottom: 50px;
}

.page-news-industry-updates__trend-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 25px;
    text-align: center;
}

.page-news-industry-updates__dark-bg .page-news-industry-updates__trend-title {
    color: #FFFF00;
}

.page-news-industry-updates__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-news-industry-updates__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* FAQ Section */
.page-news-industry-updates__faq-list {
    margin-top: 40px;
}

.page-news-industry-updates__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}