.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body */
}

/* --- Hero Section --- */
.page-news__hero-section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    overflow: hidden;
    background-color: #26A9E0; /* Using primary brand color for hero background */
    color: #ffffff;
    padding-top: 100px; /* Base padding to ensure content is below potential header */
}

.page-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Make background image subtle */
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.page-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

.page-news__btn-primary,
.page-news__btn-secondary,
.page-news__read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

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

.page-news__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

/* --- Section Titles & Intros --- */
.page-news__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-news__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* --- Latest Articles Section --- */
.page-news__latest-articles {
    background-color: #ffffff;
    color: #333333; /* Light background, dark text */
    padding: 60px 0;
}

.page-news__latest-articles .page-news__section-title,
.page-news__latest-articles .page-news__section-intro {
    color: #333333;
}

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

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

.page-news__article-card:hover {
    transform: translateY(-5px);
}

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

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

.page-news__article-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news__article-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-news__article-title a:hover {
    text-decoration: underline;
}

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

.page-news__article-date {
    font-size: 0.85em;
    color: #888888;
    margin-bottom: 15px;
}

.page-news__read-more-btn {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
    text-align: center;
    padding: 10px 20px;
    margin-top: auto;
}

.page-news__read-more-btn:hover {
    background-color: #1e87c2;
    border-color: #1e87c2;
}

.page-news__view-all {
    text-align: center;
    margin-top: 50px;
}

/* --- Promotions & Events Section --- */
.page-news__promotions-events {
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff; /* Light text */
    padding: 60px 0;
}

.page-news__promotions-events .page-news__section-title,
.page-news__promotions-events .page-news__section-intro {
    color: #ffffff;
}

.page-news__promo-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-news__promo-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-news__promo-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-news__promo-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news__promo-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-news__promo-title a:hover {
    text-decoration: underline;
}

.page-news__promo-description {
    font-size: 1.05em;
    margin-bottom: 25px;
    color: #f0f0f0;
}

/* --- Guides & Strategies Section --- */
.page-news__guides-strategies {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.page-news__guides-strategies .page-news__section-title,
.page-news__guides-strategies .page-news__section-intro {
    color: #333333;
}

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

.page-news__guide-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__guide-item:hover {
    transform: translateY(-5px);
}

.page-news__guide-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news__guide-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-news__guide-title a:hover {
    text-decoration: underline;
}

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

/* --- Industry Insights Section --- */
.page-news__industry-insights {
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff; /* Light text */
    padding: 60px 0;
}

.page-news__industry-insights .page-news__section-title,
.page-news__industry-insights .page-news__section-intro {
    color: #ffffff;
}

.page-news__insights-content {
    margin-top: 40px;
}

.page-news__insights-subtitle {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #26A9E0; /* Highlight with brand color */
}

.page-news__insights-text {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

/* --- FAQ Section --- */
.page-news__faq-section {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text */
    padding: 60px 0;
}

.page-news__faq-section .page-news__section-title {
    color: #333333;
}

.page-news__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-news__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    color: #333333;
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
    background-color: #d0d0d0;
}

.page-news__faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: #333333;
}

.page-news__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-news__faq-item.active .page-news__faq-toggle {
    transform: rotate(45deg);
}

.page-news__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
    background-color: #f8f8f8;
}

.page-news__faq-item.active .page-news__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px;
}

.page-news__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* --- Call to Action Section --- */
.page-news__cta-section {
    background-color: #26A9E0; /* Brand color background */
    color: #ffffff; /* Light text */
    padding: 60px 0;
    text-align: center;
}

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

.page-news__cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .page-news__hero-title {
        font-size: 2.8em;
    }

    .page-news__section-title {
        font-size: 2em;
    }

    .page-news__promo-card {
        flex-direction: column;
    }

    .page-news__promo-image {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-news {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-news__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Apply header offset for mobile hero if needed */
        min-height: 500px;
    }

    .page-news__hero-title {
        font-size: 2.2em;
    }

    .page-news__hero-description {
        font-size: 1em;
    }

    .page-news__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-news__btn-primary,
    .page-news__btn-secondary,
    .page-news__read-more-btn {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-news__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-news__articles-grid,
    .page-news__guides-grid {
        grid-template-columns: 1fr;
    }

    .page-news__article-image {
        height: 180px;
    }

    .page-news__article-card,
    .page-news__promo-card,
    .page-news__guide-item,
    .page-news__faq-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-news__promo-image {
        height: 200px;
    }

    .page-news__promo-content,
    .page-news__article-content,
    .page-news__guide-item {
        padding: 20px;
    }

    .page-news__promo-title,
    .page-news__article-title,
    .page-news__guide-title {
        font-size: 1.2em;
    }

    .page-news__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-news__faq-question h3 {
        font-size: 1em;
    }

    .page-news__faq-answer {
        padding: 0 20px;
    }

    .page-news__faq-item.active .page-news__faq-answer {
        padding: 15px 20px;
    }

    /* Images responsiveness */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news__section,
    .page-news__card,
    .page-news__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Video responsiveness (if any, though none currently in HTML) */
    .page-news video,
    .page-news__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news__video-section,
    .page-news__video-container,
    .page-news__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 1.8em;
    }

    .page-news__section-title {
        font-size: 1.5em;
    }
}