.page-news {
    background-color: #08160F; /* Custom palette background */
    color: #F2FFF6; /* Custom palette main text */
    font-family: 'Arial', sans-serif; /* Placeholder font */
    line-height: 1.6;
}

.page-news__section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Ensure content has padding on smaller screens */
    box-sizing: border-box;
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-news__hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.page-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-news__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(8, 22, 15, 0.7); /* Semi-transparent background for text */
    border-radius: 10px;
    margin-top: 10px; /* Small top margin for hero content */
}

.page-news__main-title {
    color: #F2FFF6;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

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

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

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

.page-news__btn-secondary:hover {
    background-color: #2E7A4E;
    color: #F2FFF6;
}

.page-news__section-title {
    color: #F2C14E;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #57E38D;
    border-radius: 2px;
}

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

.page-news__paragraph {
    color: #A7D9B8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.page-news__paragraph strong {
    color: #F2FFF6;
}

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

.page-news__grid-item {
    background-color: #11271B;
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
}

.page-news__grid-item .page-news__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-news__grid-title {
    color: #F2FFF6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-news__grid-text {
    color: #A7D9B8;
    font-size: 0.95rem;
}

/* News List */
.page-news__news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news__news-card {
    background-color: #11271B;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
    display: flex;
    flex-direction: column;
}

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

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

.page-news__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.page-news__card-title a:hover {
    color: #F2C14E;
}

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

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

.page-news__read-more-btn {
    display: inline-block;
    background-color: #0A4B2C;
    color: #F2FFF6;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-news__read-more-btn:hover {
    background-color: #2E7A4E;
}

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

/* Lists */
.page-news__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-news__list-item {
    color: #A7D9B8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-news__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    color: #57E38D;
    font-size: 1.1em;
}

.page-news__list--ordered {
    list-style-type: decimal;
    padding-left: 25px;
}

.page-news__list--ordered .page-news__list-item::before {
    content: none;
}

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

.page-news__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #0A4B2C;
    color: #F2FFF6;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

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

.page-news__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D;
}

/* Native details element styling */
.page-news__faq-item summary {
    list-style: none;
}
.page-news__faq-item summary::-webkit-details-marker {
    display: none;
}

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

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

/* Conclusion */
.page-news__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__section {
        padding: 40px 15px;
    }

    .page-news__hero-section {
        min-height: 450px;
    }

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

    .page-news__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

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

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

    .page-news__btn-primary,
    .page-news__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        text-align: center;
    }

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

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

    .page-news__paragraph,
    .page-news__grid-text,
    .page-news__card-excerpt,
    .page-news__list-item,
    .page-news__faq-answer p {
        font-size: 0.95rem;
    }

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

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

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

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

    /* Images and Videos Responsive */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-news video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__hero-section,
    .page-news__video-section,
    .page-news__video-container,
    .page-news__video-wrapper,
    .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; /* Add padding for content within sections */
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    .page-news__hero-section {
        padding-top: 10px !important; /* Small top padding for hero section on mobile */
    }
}