/* style/news-industry-update-1.css */
.page-news-industry-update-1 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #0A2463; /* Main text color */
}

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

.page-news-industry-update-1__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF; /* Light text for dark background */
}

.page-news-industry-update-1__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-news-industry-update-1__title .highlight {
    color: #E0B94A; /* Gold highlight */
}

.page-news-industry-update-1__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-industry-update-1__btn-primary {
    display: inline-block;
    background-color: #E0B94A; /* Gold button */
    color: #0A2463; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #E0B94A;
}

.page-news-industry-update-1__btn-primary:hover {
    background-color: #f5cb5f; /* Lighter gold on hover */
    color: #051a4a;
}

.page-news-industry-update-1__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-news-industry-update-1__section:last-of-type {
    border-bottom: none;
}

.page-news-industry-update-1__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-news-industry-update-1__intro .keyword {
    font-weight: bold;
    color: #0A2463;
}

.page-news-industry-update-1__heading {
    font-size: 2em;
    margin-bottom: 30px;
    color: #0A2463;
    text-align: center;
    font-weight: bold;
}

.page-news-industry-update-1__sub-heading {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0A2463;
    font-weight: bold;
}

.page-news-industry-update-1__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-update-1__image--full-width {
    margin: 40px 0;
}

.page-news-industry-update-1__call-to-action {
    background-color: #f0f4f8; /* Light background for CTA */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-news-industry-update-1__call-to-action p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #0A2463;
}

.page-news-industry-update-1__btn-secondary {
    display: inline-block;
    background-color: #0A2463; /* Dark blue button */
    color: #FFFFFF; /* White text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #0A2463;
}

.page-news-industry-update-1__btn-secondary:hover {
    background-color: #1a3e81; /* Lighter dark blue on hover */
    border-color: #1a3e81;
}

.page-news-industry-update-1__section--dark {
    background-color: #0A2463; /* Dark blue section background */
    color: #FFFFFF; /* White text for dark section */
}

.page-news-industry-update-1__section--dark .page-news-industry-update-1__heading,
.page-news-industry-update-1__section--dark .page-news-industry-update-1__sub-heading {
    color: #E0B94A; /* Gold headings on dark background */
}

.page-news-industry-update-1__section--dark .page-news-industry-update-1__text--light {
    color: #f0f4f8; /* Slightly off-white for body text on dark background */
    text-align: justify;
}

.page-news-industry-update-1__section--dark .keyword {
    font-weight: bold;
    color: #E0B94A;
}

.page-news-industry-update-1__btn-tertiary {
    display: inline-block;
    background-color: transparent;
    color: #E0B94A; /* Gold text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid #E0B94A;
}

.page-news-industry-update-1__btn-tertiary:hover {
    background-color: #E0B94A;
    color: #0A2463;
    border-color: #E0B94A;
}

.page-news-industry-update-1__conclusion {
    text-align: center;
    background-color: #f8f8f8;
    padding-bottom: 80px;
}

.page-news-industry-update-1__conclusion p {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-industry-update-1__call-to-action--final {
    margin-top: 50px;
    background-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-news-industry-update-1__title {
        font-size: 2.2em;
    }

    .page-news-industry-update-1__subtitle {
        font-size: 1em;
    }

    .page-news-industry-update-1__heading {
        font-size: 1.8em;
    }

    .page-news-industry-update-1__sub-heading {
        font-size: 1.3em;
    }

    .page-news-industry-update-1__section {
        padding: 40px 0;
    }

    .page-news-industry-update-1__btn-primary, .page-news-industry-update-1__btn-secondary, .page-news-industry-update-1__btn-tertiary {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-news-industry-update-1__title {
        font-size: 1.8em;
    }

    .page-news-industry-update-1__subtitle {
        font-size: 0.9em;
    }

    .page-news-industry-update-1__heading {
        font-size: 1.5em;
    }

    .page-news-industry-update-1__sub-heading {
        font-size: 1.1em;
    }

    .page-news-industry-update-1__hero {
        padding: 60px 0;
    }

    .page-news-industry-update-1__call-to-action {
        padding: 20px;
    }
}