/* style/news-information-platform-updates.css */
.page-news-information-platform-updates {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333; /* Dark grey for readability on light backgrounds */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for the page */
}

.page-news-information-platform-updates__hero {
    background: linear-gradient(135deg, #0056b3, #003d80); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-news-information-platform-updates__hero-content {
    z-index: 10;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-news-information-platform-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffd700; /* Gold for main title */
}

.page-news-information-platform-updates__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-news-information-platform-updates__hero-btn {
    display: inline-block;
    background-color: #ffd700; /* Gold button */
    color: #0056b3; /* Dark blue text on gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-information-platform-updates__hero-btn:hover {
    background-color: #e0b800; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-news-information-platform-updates__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.page-news-information-platform-updates__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-news-information-platform-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-news-information-platform-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-news-information-platform-updates__section:last-of-type {
    border-bottom: none;
}

.page-news-information-platform-updates__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.page-news-information-platform-updates__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700; /* Gold underline */
    border-radius: 2px;
}

.page-news-information-platform-updates__sub-title {
    font-size: 1.8em;
    color: #004080; /* Slightly darker blue for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-news-information-platform-updates__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444444; /* Slightly lighter dark grey for body text */
}

.page-news-information-platform-updates__paragraph strong {
    color: #0056b3;
}

.page-news-information-platform-updates__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-news-information-platform-updates__cta {
    background-color: #003d80; /* Darker blue background for CTA */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-news-information-platform-updates__cta .page-news-information-platform-updates__section-title {
    color: #ffd700; /* Gold for CTA title */
}

.page-news-information-platform-updates__cta .page-news-information-platform-updates__paragraph {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-information-platform-updates__cta-btn {
    display: inline-block;
    background-color: #ffd700; /* Gold button */
    color: #0056b3; /* Dark blue text on gold button */
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-information-platform-updates__cta-btn:hover {
    background-color: #e0b800;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news-information-platform-updates__hero-title {
        font-size: 2.5em;
    }

    .page-news-information-platform-updates__hero-subtitle {
        font-size: 1.1em;
    }

    .page-news-information-platform-updates__section-title {
        font-size: 2em;
    }

    .page-news-information-platform-updates__sub-title {
        font-size: 1.5em;
    }

    .page-news-information-platform-updates__paragraph {
        font-size: 1em;
    }

    .page-news-information-platform-updates__hero-btn,
    .page-news-information-platform-updates__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news-information-platform-updates__hero {
        padding: 60px 15px;
    }

    .page-news-information-platform-updates__hero-title {
        font-size: 2em;
    }

    .page-news-information-platform-updates__hero-subtitle {
        font-size: 0.9em;
    }

    .page-news-information-platform-updates__section {
        padding: 40px 0;
    }

    .page-news-information-platform-updates__section-title {
        font-size: 1.8em;
    }

    .page-news-information-platform-updates__sub-title {
        font-size: 1.3em;
    }

    .page-news-information-platform-updates__cta {
        padding: 60px 15px;
    }
}