/* style/news-industry-insights.css */
.page-news-industry-insights {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A2342;
}

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

.page-news-industry-insights__hero {
    background: linear-gradient(135deg, #0A2342 0%, #2a4c7a 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-news-industry-insights__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: 700;
    line-height: 1.2;
}

.page-news-industry-insights__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-news-industry-insights__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-industry-insights__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-news-industry-insights__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue text */
}

.page-news-industry-insights__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-news-industry-insights__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-news-industry-insights__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-news-industry-insights__btn--accent {
    background-color: #DC3545; /* Red accent */
    color: #FFFFFF;
}

.page-news-industry-insights__btn--accent:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.page-news-industry-insights__btn--inline {
    margin-top: 20px;
}

.page-news-industry-insights__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-news-industry-insights__btn--xlarge {
    padding: 20px 40px;
    font-size: 1.4em;
    border-radius: 10px;
}

.page-news-industry-insights__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.page-news-industry-insights__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-news-industry-insights__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-news-industry-insights__section strong {
    color: #FFD700;
}

.page-news-industry-insights__section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #E0E0E0;
}

.page-news-industry-insights__section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-news-industry-insights__section ul li strong {
    color: #FFD700;
}

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

.page-news-industry-insights__cta-final {
    background-color: #1A365D; /* Slightly lighter blue for contrast */
    padding: 80px 0;
    text-align: center;
}

.page-news-industry-insights__cta-content {
    max-width: 900px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-industry-insights__hero-title {
        font-size: 2.5em;
    }
    .page-news-industry-insights__hero-subtitle {
        font-size: 1.1em;
    }
    .page-news-industry-insights__section-title {
        font-size: 2em;
    }
    .page-news-industry-insights__section p, .page-news-industry-insights__section ul li {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-news-industry-insights__hero {
        padding: 80px 0;
    }
    .page-news-industry-insights__hero-title {
        font-size: 2em;
    }
    .page-news-industry-insights__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-news-industry-insights__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-news-industry-insights__section {
        padding: 40px 0;
    }
    .page-news-industry-insights__section-title {
        font-size: 1.8em;
    }
    .page-news-industry-insights__btn--xlarge {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 576px) {
    .page-news-industry-insights__hero-title {
        font-size: 1.8em;
    }
    .page-news-industry-insights__hero-subtitle {
        font-size: 0.95em;
    }
    .page-news-industry-insights__section-title {
        font-size: 1.5em;
    }
    .page-news-industry-insights__section p, .page-news-industry-insights__section ul li {
        font-size: 0.95em;
    }
    .page-news-industry-insights__btn {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
}