.page-news {
    color: #ffffff; /* Dark body background #0a0a0a, so light text */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    padding-top: 0; /* As per fixed header rule, body handles top padding */
    background: #0a0a0a; /* Dark background from body */
    text-align: center;
    overflow: hidden; /* Ensure content does not overflow */
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between image and content */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-news__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size */
    font-weight: 700;
    color: #26A9E0; /* Brand color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-news__intro-text {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button does not overflow */
}

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

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

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

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

/* Latest News Section */
.page-news__latest-news-section,
.page-news__deep-dive-section,
.page-news__faq-section,
.page-news__cta-section {
    padding: 50px 0;
    background: #0a0a0a; /* Dark background */
}

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
}

.page-news__section-description {
    font-size: 1rem;
    color: #f0f0f0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.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: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #ffffff; /* Light text for card content */
}

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

.page-news__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    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: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-news__article-title a {
    color: #26A9E0; /* Brand color for article titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #3bb5f7;
}

.page-news__article-date {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
    display: block;
}

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

.page-news__read-more-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #26A9E0;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.page-news__read-more-btn:hover {
    background: #1e87b0;
}

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

/* Deep Dive Section */
.page-news__deep-dive-section {
    padding: 60px 0;
}

.page-news__deep-dive-section .page-news__container {
    max-width: 900px;
}

.page-news__deep-dive-section .page-news__section-title {
    margin-bottom: 40px;
}

.page-news__sub-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-news__text-block {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-news__conclusion-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #f0f0f0;
    margin-top: 30px;
    text-align: center;
}

/* FAQ Section */
.page-news__faq-section {
    padding: 50px 0 70px;
}

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

.page-news__faq-item {
    background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
}

.page-news__faq-item summary::-webkit-details-marker {
    display: none; /* Hide for Webkit browsers */
}

.page-news__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form cross */
}

.page-news__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* CTA Section */
.page-news__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%; /* Important for mobile responsiveness */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-news__container {
        padding: 0 25px;
    }
    .page-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-news__btn-primary {
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    /* Fixed header spacing - body handles it, this section needs small top margin */
    .page-news__hero-section {
        padding-top: 0 !important; /* Ensure no extra padding if body has it */
    }
    .page-news__latest-news-section,
    .page-news__deep-dive-section,
    .page-news__faq-section,
    .page-news__cta-section {
        padding: 30px 0;
    }
    .page-news__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-news__hero-content {
        padding: 0 15px 30px;
    }

    .page-news__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-news__intro-text {
        font-size: 1rem;
    }

    .page-news__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-news__section-description {
        font-size: 0.95rem;
    }

    .page-news__articles-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .page-news__article-image {
        height: 180px; /* Adjust height for mobile */
    }

    .page-news__article-title {
        font-size: 1.15rem;
    }

    .page-news__sub-title {
        font-size: 1.4rem;
    }

    .page-news__text-block,
    .page-news__conclusion-text,
    .page-news__faq-answer p {
        font-size: 0.95rem;
    }

    .page-news__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }

    .page-news__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-news__btn-primary,
    .page-news__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-right: 0 !important; /* Remove margin for stacked buttons */
        box-sizing: border-box !important;
    }
}