.page-news-industry-updates {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #ffffff; /* Explicitly setting for clarity, though body default is white */
}

.page-news-industry-updates__section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-news-industry-updates__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #017439; /* Primary brand color for hero background */
    color: #ffffff;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-news-industry-updates__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin-right: 40px;
    flex: 1;
}

.page-news-industry-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-news-industry-updates__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-news-industry-updates__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-news-industry-updates__hero-image-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-news-industry-updates__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

.page-news-industry-updates__section-title {
    font-size: 2.5em;
    color: #017439; /* Primary brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news-industry-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #017439;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-news-industry-updates__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-news-industry-updates__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-news-industry-updates__content-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-news-industry-updates__text-block {
    flex: 1;
    max-width: 50%;
}

.page-news-industry-updates__dark-section {
    background-color: #017439; /* Primary brand color */
    color: #ffffff;
}

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

.page-news-industry-updates__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-industry-updates__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-news-industry-updates__feature-item:hover {
    transform: translateY(-5px);
}

.page-news-industry-updates__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-news-industry-updates__feature-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-news-industry-updates__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-news-industry-updates__future-outlook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-industry-updates__outlook-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-industry-updates__faq-section {
    background-color: #f5f5f5;
}

.page-news-industry-updates__faq-list {
    margin-top: 40px;
}

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

.page-news-industry-updates__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    color: #333333;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-news-industry-updates__faq-question:hover {
    background-color: #f0f0f0;
}

.page-news-industry-updates__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #017439;
}

.page-news-industry-updates__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #017439;
    transition: transform 0.3s ease;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-toggle {
    transform: rotate(45deg);
}

.page-news-industry-updates__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555555;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px !important;
}

.page-news-industry-updates__cta-section {
    text-align: center;
    background-color: #017439; /* Primary brand color */
    color: #ffffff;
}

.page-news-industry-updates__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-news-industry-updates__cta-content .page-news-industry-updates__section-title {
    color: #ffffff;
}

.page-news-industry-updates__cta-content .page-news-industry-updates__section-title::after {
    background-color: #ffffff;
}

.page-news-industry-updates__cta-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-news-industry-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-news-industry-updates__btn-primary {
    display: inline-block;
    background-color: #C30808; /* Custom Register/Login color */
    color: #FFFF00; /* Custom Register/Login font color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #C30808;
    box-sizing: border-box;
}

.page-news-industry-updates__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-news-industry-updates__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #017439; /* Primary brand color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #017439;
    box-sizing: border-box;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-industry-updates__hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: var(--header-offset, 120px);
    }

    .page-news-industry-updates__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .page-news-industry-updates__image-text-block {
        flex-direction: column;
        text-align: center;
    }

    .page-news-industry-updates__content-image,
    .page-news-industry-updates__text-block {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-news-industry-updates {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .page-news-industry-updates__section-spacing {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-news-industry-updates__hero-title {
        font-size: 2.2em;
    }

    .page-news-industry-updates__hero-description {
        font-size: 1em;
    }

    .page-news-industry-updates__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-news-industry-updates__sub-title {
        font-size: 1.5em;
    }

    .page-news-industry-updates__features-grid,
    .page-news-industry-updates__future-outlook-grid {
        grid-template-columns: 1fr;
    }

    .page-news-industry-updates__feature-item,
    .page-news-industry-updates__outlook-item {
        padding: 20px;
    }

    .page-news-industry-updates__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-news-industry-updates__faq-answer {
        padding: 15px;
    }

    /* Mobile image responsive adaptations */
    .page-news-industry-updates img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-news-industry-updates__hero-image-wrapper,
    .page-news-industry-updates__image-text-block,
    .page-news-industry-updates__feature-item,
    .page-news-industry-updates__outlook-item,
    .page-news-industry-updates__faq-item,
    .page-news-industry-updates__cta-section,
    .page-news-industry-updates__content-area,
    .page-news-industry-updates__dark-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Mobile button responsive adaptations */
    .page-news-industry-updates__btn-primary,
    .page-news-industry-updates__btn-secondary,
    .page-news-industry-updates a[class*="button"],
    .page-news-industry-updates a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .page-news-industry-updates__hero-cta-buttons,
    .page-news-industry-updates__cta-buttons {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 0px !important; /* Buttons within cta-buttons should manage their own padding */
      padding-right: 0px !important;
      flex-direction: column !important; /* Stack buttons vertically */
      gap: 15px !important;
    }

    .page-news-industry-updates__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
}

@media (max-width: 480px) {
    .page-news-industry-updates__hero-title {
        font-size: 1.8em;
    }
    .page-news-industry-updates__section-title {
        font-size: 1.8em;
    }
    .page-news-industry-updates__sub-title {
        font-size: 1.3em;
    }
}