.page-news {
    background-color: #08160F; /* Main background color from palette */
    color: #F2FFF6; /* Main text color from palette for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #08160F; /* Ensure consistent background */
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    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;
    object-fit: cover;
    display: block;
}

.page-news__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    background-color: #0A4B2C; /* Deep Green from palette for a distinct background */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px; /* Space after hero content */
}

.page-news__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-news__lead-paragraph {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-news__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-news__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Section Styling */
.page-news__introduction-section,
.page-news__analysis-section,
.page-news__benefits-section {
    background-color: #f8f8f8; /* Light background for these sections */
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-news__updates-section,
.page-news__guide-section,
.page-news__faq-section {
    background-color: #08160F; /* Dark background for these sections */
    color: #F2FFF6; /* Light text for dark background */
    padding: 60px 0;
}

.page-news__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F2C14E; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-news__section-title.page-news__text-main {
    color: #F2FFF6; /* Override for dark sections */
}

.page-news__text-block {
    margin-bottom: 20px;
    font-size: 1rem;
    color: inherit; /* Inherit color from parent section */
}

.page-news__text-main {
    color: #F2FFF6;
}

.page-news__text-secondary {
    color: #A7D9B8;
}

/* Grid for cards */
.page-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-news__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-news__card {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6; /* Text Main for cards */
}

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

.page-news__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-news__card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.page-news__card-title a {
    color: #F2C14E; /* Gold for card titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #57E38D; /* Glow color on hover */
}

.page-news__card-text {
    font-size: 0.95rem;
    margin: 0 20px 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-news__item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6;
}

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

.page-news__item-image {
    width: 100%;
    height: 280px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-news__item-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.page-news__item-title a {
    color: #F2C14E; /* Gold for item titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__item-title a:hover {
    color: #57E38D; /* Glow color on hover */
}

.page-news__item-text {
    font-size: 0.95rem;
    margin: 0 20px 20px;
    color: #A7D9B8; /* Text Secondary */
}

/* Guide Section Specifics */
.page-news__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-news__image-right,
.page-news__text-left {
    flex: 1;
    min-width: 300px; /* Ensure content doesn't get too narrow */
}

.page-news__image-right {
    order: 2; /* Image on right for desktop */
}

.page-news__text-left {
    order: 1; /* Text on left for desktop */
}

.page-news__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__sub-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

/* Benefits List */
.page-news__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__benefits-item {
    background-color: #ffffff; /* White background for light section */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333; /* Dark text for light background */
}

.page-news__benefits-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #11A84E; /* Main color */
    margin-bottom: 10px;
}

.page-news__benefits-text {
    font-size: 1rem;
    color: #555555;
}

.page-news__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-news__cta-text {
    font-size: 1.2rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 25px;
}

.page-news__cta-button--large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* FAQ Section */
.page-news__faq-list {
    margin-top: 30px;
}

.page-news__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    list-style: none; /* Remove default marker for details summary */
}

.page-news__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-news__faq-qtext {
    flex-grow: 1;
}

.page-news__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: #57E38D; /* Glow color */
}

.page-news__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-news__faq-answer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news__hero-content {
        /* Removed transform/negative margin */
    }
    .page-news__grid--2-col {
        grid-template-columns: 1fr; /* Stack 2-column grid on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-news__container {
        padding: 0 15px;
    }

    .page-news__hero-content {
        padding: 30px 15px;
        /* Removed transform/negative margin */
    }

    .page-news__main-title {
        font-size: 2rem;
    }

    .page-news__lead-paragraph {
        font-size: 1rem;
    }

    .page-news__section-title {
        font-size: 1.8rem;
    }

    .page-news__grid {
        grid-template-columns: 1fr;
    }

    .page-news__card-image {
        height: 200px;
    }
    .page-news__item-image {
        height: 200px;
    }

    .page-news__card-title,
    .page-news__item-title {
        font-size: 1.2rem;
    }

    .page-news__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-news__image-right {
        order: initial; /* Reset order for mobile */
    }

    .page-news__text-left {
        order: initial; /* Reset order for mobile */
    }

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

    .page-news__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-news__cta-block {
        padding: 30px 20px;
    }

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

    /* Mobile responsive images */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-news__hero-image-wrapper,
    .page-news__card,
    .page-news__item,
    .page-news__image-right,
    .page-news__benefits-item,
    .page-news__cta-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important; /* Reset specific padding if any */
        padding-right: 0 !important; /* Reset specific padding if any */
    }

    .page-news__hero-section,
    .page-news__introduction-section,
    .page-news__updates-section,
    .page-news__analysis-section,
    .page-news__guide-section,
    .page-news__benefits-section,
    .page-news__faq-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    /* Mobile responsive buttons */
    .page-news__cta-button,
    .page-news a[class*="button"],
    .page-news a[class*="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 !important;
        padding-right: 15px !important;
    }
    
    .page-news__cta-buttons,
    .page-news__button-group,
    .page-news__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-news__cta-buttons {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .page-news__hero-content {
        /* Removed transform/negative margin */
    }
    .page-news__main-title {
        font-size: 1.7rem;
    }
    .page-news__section-title {
        font-size: 1.5rem;
    }
}