.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background: #08160F;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Match container width for consistent look */
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    filter: none !important;
}

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

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

.page-news__description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary,
.page-news__read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

.page-news__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-news__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-news__btn-secondary {
    background: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-news__btn-secondary:hover {
    background: #2E7A4E; /* Border */
    color: #ffffff;
}

.page-news__read-more-btn {
    background: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.page-news__read-more-btn:hover {
    background: #57E38D; /* Glow */
    color: #08160F; /* Background */
}

/* Section Titles */
.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

/* Latest News Section */
.page-news__latest-news-section {
    padding: 60px 20px;
    background-color: #11271B; /* Card BG */
}

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

.page-news__news-card {
    background: #08160F; /* Background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news__news-thumbnail {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    filter: none !important;
}

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

.page-news__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-news__card-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-news__card-meta {
    font-size: 0.85rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-news__card-excerpt {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

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

/* Featured News Section */
.page-news__featured-news-section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
}

.page-news__featured-card {
    display: flex;
    background: #11271B; /* Card BG */
    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;
}

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

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

.page-news__featured-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-news__featured-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-news__featured-meta {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-news__featured-excerpt {
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-news__featured-image {
    width: 50%; /* Adjust as needed */
    height: auto;
    object-fit: cover;
    display: block;
    filter: none !important;
}

/* About vv88 Section */
.page-news__about-vv88-section {
    padding: 60px 20px;
    background-color: #11271B; /* Card BG */
}

.page-news__content-area p {
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

/* Why Choose vv88 Section */
.page-news__why-choose-vv88-section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
}

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

.page-news__feature-item {
    background: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-news__feature-icon {
    width: 100px; /* Display size, source image is 200x200 */
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: none !important;
}

.page-news__feature-title {
    font-size: 1.3rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-news__feature-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-news__faq-section {
    padding: 60px 20px;
    background-color: #11271B; /* Card BG */
}

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

.page-news__faq-item {
    background: #08160F; /* Background */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

.page-news__faq-question {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-news__faq-item[open] .page-news__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-news__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
    margin-top: 10px;
    padding-top: 15px;
}

/* CTA Section */
.page-news__cta-section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
    text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .page-news__featured-card {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .page-news__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

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

    .page-news__description {
        font-size: 1rem;
    }

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

    .page-news__news-thumbnail {
        height: 200px;
    }

    .page-news__featured-content {
        padding: 20px;
    }

    .page-news__featured-image {
        height: 250px;
    }

    .page-news__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

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

    .page-news__faq-answer {
        font-size: 0.95rem;
        padding: 0 15px 15px;
    }

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

    .page-news__btn-primary,
    .page-news__btn-secondary,
    .page-news__read-more-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    /* All containers must be responsive */
    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__hero-section,
    .page-news__latest-news-section,
    .page-news__featured-news-section,
    .page-news__about-vv88-section,
    .page-news__why-choose-vv88-section,
    .page-news__faq-section,
    .page-news__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Ensure no horizontal scroll */
    }
    .page-news__video-section {
        padding-top: 10px !important;
    }
}

/* Color Contrast Safeguards */
/* The base colors are set to ensure contrast on the dark background */
.page-news {
    color: #F2FFF6; /* Text Main - high contrast on #08160F background */
}

.page-news__card,
.page-news__feature-item {
    background: #11271B; /* Card BG - dark green */
    color: #A7D9B8; /* Text Secondary - good contrast on Card BG */
}

.page-news__main-title,
.page-news__section-title,
.page-news__card-title a,
.page-news__feature-title,
.page-news__faq-item summary {
    color: #F2FFF6; /* Text Main - high contrast */
}

.page-news__description,
.page-news__card-meta,
.page-news__card-excerpt,
.page-news__featured-meta,
.page-news__featured-excerpt,
.page-news__content-area p,
.page-news__feature-description,
.page-news__faq-answer {
    color: #A7D9B8; /* Text Secondary - good contrast */
}

.page-news__btn-primary {
    color: #ffffff; /* White text on green gradient button */
}

.page-news__btn-secondary {
    color: #F2FFF6; /* Text Main on transparent/border button */
}

.page-news__read-more-btn {
    color: #F2FFF6; /* Text Main on deep green button */
}

.page-news__card-title a:hover,
.page-news__featured-title a:hover,
.page-news__faq-toggle {
    color: #57E38D; /* Glow - ensures visibility for interactive elements */
}

/* Ensure images do not have filters */
.page-news img {
    filter: none !important;
}