.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #f8f8f8; /* A very light grey background for the page content */
}

/* Hero Section */
.page-news__hero-section {
    background-color: #26A9E0; /* Background for the whole section */
    color: #ffffff;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
    padding-bottom: 50px; /* Padding for content below */
    text-align: center;
}

.page-news__hero-main-image {
    width: 100%;
    height: 600px; /* Fixed height for desktop hero image */
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

.page-news__hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news__main-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-news__description,
.page-news__secondary-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: #f0f0f0;
}

/* Call to Action Button */
.page-news__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-news__btn-primary {
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-news__btn-primary:hover {
    background-color: #1f8ec4;
    border-color: #1f8ec4;
}

.page-news__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-news__btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #1f8ec4;
}

/* General Container */
.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-news__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #26A9E0; /* Primary brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Latest Articles Section */
.page-news__latest-articles-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.page-news__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-news__article-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-news__article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news__article-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-news__article-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #26A9E0;
}

.page-news__article-meta {
    font-size: 14px;
    color: #777777;
    margin-bottom: 15px;
}

.page-news__article-excerpt {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__read-more-link {
    display: inline-block;
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: auto; /* Push to bottom */
}

.page-news__read-more-link:hover {
    text-decoration: underline;
}

.page-news__view-all-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* Industry Insights Section */
.page-news__industry-insights-section {
    background-color: #f0f8ff; /* Light blue background */
    padding: 60px 0;
}

.page-news__insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__insight-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__insight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news__insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-news__insight-title {
    font-size: 20px;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-news__insight-text {
    font-size: 16px;
    color: #555555;
    padding: 0 20px;
}

/* About Us Brief Section */
.page-news__about-us-brief-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.page-news__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-news__text-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #444444;
}

.page-news__about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

/* CTA Section (Dark Background) */
.page-news__cta-section {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-news__cta-section .page-news__section-title {
    color: #ffffff;
}

.page-news__cta-section .page-news__description {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    color: #f0f0f0;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* FAQ Section */
.page-news__faq-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}