:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
    --login-button-color: #EA7C07;
    --login-button-hover-color: #e06c00; /* Manually darkened */
    --primary-color-hover: #1f8ec0; /* Manually darkened */
}

.page-news-latest-industry-trends {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default dark text on light body background */
    background: var(--secondary-color); /* Default white background */
}

/* Hero Section */
.page-news-latest-industry-trends__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, var(--primary-color) 0%, #a0dfff 100%); /* Light blue gradient */
    color: var(--text-color-light); /* Light text on dark/gradient background */
    overflow: hidden; /* Prevent content overflow */
}

.page-news-latest-industry-trends__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-news-latest-industry-trends__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-news-latest-industry-trends__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-news-latest-industry-trends__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-trends__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--text-color-light);
}

.page-news-latest-industry-trends__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--login-button-color); /* Use login color for primary CTA */
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-news-latest-industry-trends__cta-button:hover {
    background: var(--login-button-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-news-latest-industry-trends__content-section {
    padding: 80px 20px;
    background: var(--background-light); /* Light gray background for content */
    color: var(--text-color-dark);
}

.page-news-latest-industry-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.page-news-latest-industry-trends__paragraph {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-color-dark);
}

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

.page-news-latest-industry-trends__article-card {
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news-latest-industry-trends__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-latest-industry-trends__article-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-news-latest-industry-trends__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news-latest-industry-trends__article-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.page-news-latest-industry-trends__article-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-latest-industry-trends__article-title a:hover {
    color: var(--primary-color-hover);
}

.page-news-latest-industry-trends__article-excerpt {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-latest-industry-trends__read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.page-news-latest-industry-trends__read-more:hover {
    color: var(--primary-color-hover);
    text-decoration: underline;
}

/* CTA Banner */
.page-news-latest-industry-trends__cta-banner {
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news-latest-industry-trends__cta-banner-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-color-light);
}

.page-news-latest-industry-trends__cta-banner-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-news-latest-industry-trends__cta-button--small {
    padding: 12px 30px;
    font-size: 1em;
}

/* FAQ Section */
.page-news-latest-industry-trends__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-latest-industry-trends__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
}