/* style/news-industry-trends.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light-gray: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-news-industry-trends__hero-section-placeholder {
    padding-top: 120px; /* Desktop: Adjust for fixed header */
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

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

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

.page-news-industry-trends__intro-text {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-light);
}

.page-news-industry-trends__intro-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-news-industry-trends__intro-text a:hover {
    text-decoration: underline;
}

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

.page-news-industry-trends__section:nth-of-type(odd) {
    background: #ffffff;
}

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

.page-news-industry-trends__content-block {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    line-height: 1.7;
}

.page-news-industry-trends__content-block p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-news-industry-trends__content-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-news-industry-trends__content-block a:hover {
    text-decoration: underline;
}

.page-news-industry-trends__sub-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-news-industry-trends__trend-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    line-height: 1.7;
}

.page-news-industry-trends__trend-card .page-news-industry-trends__image {
    margin-top: 0;
    margin-bottom: 20px;
}

.page-news-industry-trends__trend-card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-news-industry-trends__trend-card p {
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-news-industry-trends__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.page-news-industry-trends__cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.page-news-industry-trends__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
}

.page-news-industry-trends__btn-primary:hover {
    background: #071a47;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 36, 99, 0.4);
}

.page-news-industry-trends__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-news-industry-trends__btn-secondary:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-news-industry-trends__cta-keyword {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-news-industry-trends__faq-section {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.page-news-industry-trends__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.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, opacity 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-color);
    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);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-industry-trends__main-title {
        font-size: 2.8em;
    }

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

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

@media (max-width: 768px) {
    .page-news-industry-trends__hero-section-placeholder {
        padding-top: 100px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 30px;
    }

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

    .page-news-industry-trends__intro-text {
        font-size: 1em;
    }

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

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

    .page-news-industry-trends__container {
        padding: 0 15px;
    }

    .page-news-industry-trends__content-block,
    .page-news-industry-trends__trend-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-news-industry-trends__content-block p,
    .page-news-industry-trends__trend-card p {
        font-size: 0.95em;
    }

    .page-news-industry-trends__sub-title {
        font-size: 1.3em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-news-industry-trends__image {
        margin: 15px auto;
    }

    .page-news-industry-trends__cta-wrapper {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
    }

    .page-news-industry-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        min-width: unset;
        width: 100%;
    }

    .page-news-industry-trends__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-news-industry-trends__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        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-answer {
        padding: 0 15px;
    }
    
    .page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
        padding: 15px !important;
    }

    /* Mobile image responsive styles */
    .page-news-industry-trends img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-news-industry-trends__section,
    .page-news-industry-trends__content-block,
    .page-news-industry-trends__trend-card,
    .page-news-industry-trends__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}