:root {
    --primary-color: #DAA520; /* Gold */
    --secondary-color: #1E1E1E; /* Dark Grey/Black */
    --accent-color: #CC0000; /* Deep Red for emphasis */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f1f3f5;
    --border-color: #e0e0e0;
}

.page-news-latest-industry-trends {
    background-color: var(--background-light);
    color: var(--text-color-dark);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-news-latest-industry-trends__intro-section {
    padding-top: 180px; /* Spacing for fixed header */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333333 100%);
    color: var(--text-color-light);
    text-align: center;
}

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

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

.page-news-latest-industry-trends__intro-text {
    font-size: 1.15em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.page-news-latest-industry-trends__intro-image-wrapper {
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-trends__intro-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-news-latest-industry-trends__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), #FFD700);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-news-latest-industry-trends__cta-button:hover {
    background: linear-gradient(135deg, #FFD700, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
}

.page-news-latest-industry-trends__cta-button--large {
    padding: 18px 50px;
    font-size: 1.2em;
}

.page-news-latest-industry-trends__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-news-latest-industry-trends__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.page-news-latest-industry-trends__light-bg {
    background-color: #ffffff;
    color: var(--text-color-dark);
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-latest-industry-trends__trends-section {
    margin-top: -30px; /* Overlap slightly with intro section */
    position: relative;
    z-index: 1;
}

.page-news-latest-industry-trends__trend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.page-news-latest-industry-trends__trend-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.page-news-latest-industry-trends__trend-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.page-news-latest-industry-trends__trend-image {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.page-news-latest-industry-trends__text-block {
    flex: 1;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-news-latest-industry-trends__text-block p {
    margin-bottom: 15px;
}

.page-news-latest-industry-trends__text-block strong {
    color: var(--primary-color);
}

.page-news-latest-industry-trends__text-block a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.page-news-latest-industry-trends__text-block a:hover {
    text-decoration: underline;
    color: #004499;
}

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

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

.page-news-latest-industry-trends__promotion-card {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-news-latest-industry-trends__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-news-latest-industry-trends__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-news-latest-industry-trends__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-news-latest-industry-trends__card-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.page-news-latest-industry-trends__card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news-latest-industry-trends__card-button:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

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

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

.page-news-latest-industry-trends__article-card {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-news-latest-industry-trends__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-news-latest-industry-trends__article-content {
    padding: 25px;
}

.page-news-latest-industry-trends__article-title {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

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

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

.page-news-latest-industry-trends__article-summary {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-news-latest-industry-trends__article-date {
    font-size: 0.85em;
    color: #999999;
}

/* FAQ Section Styling */
.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: 5px;
    overflow: hidden;
}

.page-news-latest-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-latest-industry-trends__faq-item.active .page-news-latest-industry-trends__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

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

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

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

.page-news-latest-industry-trends__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--secondary-color);
}

.page-news-latest-industry-trends__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    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-latest-industry-trends__faq-item.active .page-news-latest-industry-trends__faq-toggle {
    color: var(--accent-color);
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-latest-industry-trends__main-title {
        font-size: 2.8em;
    }
    .page-news-latest-industry-trends__section-title {
        font-size: 2.2em;
    }
    .page-news-latest-industry-trends__trend-content {
        flex-direction: column;
        align-items: center;
    }
    .page-news-latest-industry-trends__trend-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin-bottom: 20px;
    }
    .page-news-latest-industry-trends__text-block {
        text-align: center;
    }
    .page-news-latest-industry-trends__promotion-grid, .page-news-latest-industry-trends__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-latest-industry-trends__intro-section {
        padding-top: 140px;
        padding-bottom: 40px;
    }
    .page-news-latest-industry-trends__main-title {
        font-size: 2.2em;
    }
    .page-news-latest-industry-trends__intro-text {
        font-size: 1em;
    }
    .page-news-latest-industry-trends__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-news-latest-industry-trends__cta-button--large {
        padding: 15px 40px;
        font-size: 1.1em;
    }
    .page-news-latest-industry-trends__section-title {
        font-size: 1.8em;
        padding-top: 40px;
        margin-bottom: 30px;
    }
    .page-news-latest-industry-trends__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-news-latest-industry-trends__trend-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-news-latest-industry-trends__trend-content {
        gap: 20px;
    }
    .page-news-latest-industry-trends__trend-image {
        height: 200px;
    }
    .page-news-latest-industry-trends__text-block {
        font-size: 0.95em;
    }
    .page-news-latest-industry-trends__promotion-card, .page-news-latest-industry-trends__article-card {
        padding: 20px;
    }
    .page-news-latest-industry-trends__card-title, .page-news-latest-industry-trends__article-title {
        font-size: 1.2em;
    }
    .page-news-latest-industry-trends__card-description, .page-news-latest-industry-trends__article-summary {
        font-size: 0.9em;
    }
    .page-news-latest-industry-trends__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-news-latest-industry-trends__faq-question h3 {
        font-size: 1em;
        width: calc(100% - 40px);
    }
    .page-news-latest-industry-trends__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-news-latest-industry-trends__faq-answer {
        padding: 0 15px;
    }
    .page-news-latest-industry-trends__faq-item.active .page-news-latest-industry-trends__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-news-latest-industry-trends__main-title {
        font-size: 1.8em;
    }
    .page-news-latest-industry-trends__section-title {
        font-size: 1.6em;
    }
    .page-news-latest-industry-trends__intro-section {
        padding-top: 120px;
    }
    .page-news-latest-industry-trends__promotion-grid, .page-news-latest-industry-trends__article-grid {
        grid-template-columns: 1fr;
    }
}