:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333333;
    --text-light: #f0f0f0;
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --border-light: #e0e0e0;
}

.page-news-industry-trends {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for the overall dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Ensure content is not hidden by fixed header */
.page-news-industry-trends__hero-banner {
    padding-top: 120px; /* Desktop: Adjust based on actual header height */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-industry-trends__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-news-industry-trends__main-title {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-news-industry-trends__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-news-industry-trends__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-news-industry-trends__cta-button:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__cta-button--secondary {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 30px;
}

.page-news-industry-trends__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.page-news-industry-trends__content-section {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 60px 0;
}

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

.page-news-industry-trends__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-news-industry-trends__paragraph {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.page-news-industry-trends__trend-card {
    background: #f9f9f9;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-trends__trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news-industry-trends__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-news-industry-trends__card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-news-industry-trends__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-news-industry-trends__list-item {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-news-industry-trends__list-item strong {
    color: var(--primary-color);
}

.page-news-industry-trends__quote {
    background: #e9f5ff;
    border-left: 5px solid var(--primary-color);
    padding: 20px 30px;
    margin: 40px 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
    border-radius: 0 8px 8px 0;
}

.page-news-industry-trends__quote .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-news-industry-trends__internal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-industry-trends__internal-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-news-industry-trends__faq-section {
    background: var(--bg-dark);
    padding: 60px 0;
    color: var(--text-light);
}

.page-news-industry-trends__faq-section .page-news-industry-trends__section-title {
    color: var(--text-light);
}

.page-news-industry-trends__faq-section .page-news-industry-trends__section-title::after {
    background-color: var(--secondary-color);
}

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

.page-news-industry-trends__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--bg-light);
    color: var(--text-dark);
}

.page-news-industry-trends__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-news-industry-trends__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-news-industry-trends__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-news-industry-trends__faq-question:active {
    background: #eeeeee;
}

.page-news-industry-trends__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-dark);
}

.page-news-industry-trends__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-news-industry-trends__faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-news-industry-trends .highlight {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-industry-trends__main-title {
        font-size: 38px;
    }
    .page-news-industry-trends__section-title {
        font-size: 28px;
    }
    .page-news-industry-trends__card-title {
        font-size: 22px;
    }
    .page-news-industry-trends__hero-banner {
        padding-top: 100px; /* Tablet */
    }
}

@media (max-width: 768px) {
    .page-news-industry-trends__hero-banner {
        padding-top: 140px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
    }
    .page-news-industry-trends__hero-content {
        padding: 0 15px;
    }
    .page-news-industry-trends__main-title {
        font-size: 32px;
    }
    .page-news-industry-trends__hero-description {
        font-size: 16px;
    }
    .page-news-industry-trends__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-news-industry-trends__content-section {
        padding: 40px 0;
    }
    .page-news-industry-trends__container {
        padding: 0 15px;
    }
    .page-news-industry-trends__section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .page-news-industry-trends__paragraph,
    .page-news-industry-trends__card-text,
    .page-news-industry-trends__list-item,
    .page-news-industry-trends__faq-answer p {
        font-size: 15px;
    }
    .page-news-industry-trends__image-full-width {
        margin: 20px 0;
    }
    .page-news-industry-trends__trend-card {
        padding: 20px;
    }
    .page-news-industry-trends__card-title {
        font-size: 20px;
    }
    .page-news-industry-trends__quote {
        padding: 15px 20px;
        font-size: 16px;
        margin: 30px 0;
    }
    .page-news-industry-trends__faq-section {
        padding: 40px 0;
    }
    .page-news-industry-trends__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-news-industry-trends__faq-question h3 {
        font-size: 15px;
        width: calc(100% - 40px);
    }
    .page-news-industry-trends__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
        padding: 15px !important;
    }

    /* Ensure all images are responsive and do not cause horizontal scroll */
    .page-news-industry-trends img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-news-industry-trends__section,
    .page-news-industry-trends__card,
    .page-news-industry-trends__container,
    .page-news-industry-trends__hero-banner {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}