.page-news-industry-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for readability on dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-news-industry-trends__article {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Hero Section */
.page-news-industry-trends__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

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

.page-news-industry-trends__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
}

.page-news-industry-trends__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 100px 20px 60px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
    margin-top: 50px; /* Push content down from the top of the section */
}

.page-news-industry-trends__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--primary-color, #FFD700); /* Gold color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-news-industry-trends__intro-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #f0f0f0;
}

.page-news-industry-trends__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-news-industry-trends__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    max-width: 100%;
    box-sizing: border-box;
}

.page-news-industry-trends__cta-button--primary {
    background: var(--primary-color, #FFD700);
    color: var(--secondary-color, #1A1A1A); /* Dark text on gold button */
    border: 2px solid var(--primary-color, #FFD700);
}

.page-news-industry-trends__cta-button--primary:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.page-news-industry-trends__cta-button--secondary {
    background: transparent;
    color: var(--primary-color, #FFD700); /* Gold text on transparent button */
    border: 2px solid var(--primary-color, #FFD700);
}

.page-news-industry-trends__cta-button--secondary:hover {
    background: rgba(255, 215, 0, 0.1); /* Light gold background on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Content Sections */
.page-news-industry-trends__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-news-industry-trends__dark-bg {
    background-color: var(--secondary-color, #1A1A1A); /* Dark background for alternating sections */
    color: #ffffff; /* Light text */
}

.page-news-industry-trends__section-title {
    font-size: 2.2em;
    color: var(--primary-color, #FFD700);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-news-industry-trends__subsection-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-industry-trends__content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
}

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

/* Specific styling for the final CTA section */
.page-news-industry-trends__cta-section {
    padding: 80px 0;
    background-color: var(--secondary-color, #1A1A1A); /* Ensure dark background */
    color: #ffffff;
    text-align: center;
}

.page-news-industry-trends__cta-container {
    max-width: 900px;
}

.page-news-industry-trends__cta-title {
    font-size: 2.5em;
    color: var(--primary-color, #FFD700);
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-industry-trends__main-title {
        font-size: 2.8em;
    }
    .page-news-industry-trends__section-title {
        font-size: 2em;
    }
    .page-news-industry-trends__subsection-title {
        font-size: 1.4em;
    }
    .page-news-industry-trends__intro-description,
    .page-news-industry-trends__content-section p,
    .page-news-industry-trends__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-news-industry-trends {
        padding-top: var(--header-offset, 120px) !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-news-industry-trends__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-news-industry-trends__hero-content {
        padding: 80px 15px 40px;
        margin-top: 30px;
    }

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

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

    .page-news-industry-trends__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-news-industry-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-news-industry-trends__content-section {
        padding: 40px 0;
    }

    .page-news-industry-trends__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-news-industry-trends__subsection-title {
        font-size: 1.2em;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .page-news-industry-trends__content-section p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .page-news-industry-trends img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-news-industry-trends__hero-image-wrapper,
    .page-news-industry-trends__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-news-industry-trends__cta-section {
        padding: 60px 0;
    }

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

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

@media (max-width: 480px) {
    .page-news-industry-trends__main-title {
        font-size: 1.8em;
    }
    .page-news-industry-trends__section-title {
        font-size: 1.6em;
    }
    .page-news-industry-trends__subsection-title {
        font-size: 1.1em;
    }
    .page-news-industry-trends__cta-title {
        font-size: 1.8em;
    }
}