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

.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space for content below image */
}

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

.page-news__hero-content {
    max-width: 900px;
    padding: 20px;
    margin-top: -80px; /* Overlap image slightly for visual effect */
    background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-news__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive H1 font size */
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

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

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

.page-news__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-news__section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-news__section:last-of-type {
    border-bottom: none;
}

.page-news__dark-section {
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
}

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

.page-news__section-title {
    font-size: 2.2rem;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-news__section-title--light {
    color: #F2FFF6; /* Text Main */
}

.page-news__text-block {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
    margin-bottom: 30px;
}

.page-news__text-block--light {
    color: #F2FFF6; /* Text Main */
}

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

.page-news__feature-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-news__feature-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

.page-news__card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.page-news__card-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-news__card-link {
    display: inline-block;
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: auto; /* Push link to bottom */
}

.page-news__card-link:hover {
    color: #2AD16F;
    text-decoration: underline;
}

.page-news__access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-news__access-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-news__access-item:last-child {
    margin-bottom: 0;
}

.page-news__access-heading {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news__access-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
}

.page-news__cta-button--small {
    padding: 8px 18px;
    font-size: 0.9rem;
    margin-top: 15px;
}

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

.page-news__benefit-card {
    text-align: center;
}

.page-news__cta-container {
    text-align: center;
}

.page-news__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

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

.page-news__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #57E38D; /* Glow */
    color: #57E38D; /* Glow */
}

.page-news__cta-button--secondary:hover {
    background-color: #57E38D;
    color: #11271B; /* Card BG */
}

.page-news__faq-section {
    padding-bottom: 60px;
}

.page-news__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-news__faq-item[open] .page-news__faq-question {
    background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-news__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

.page-news__faq-answer p {
    margin-bottom: 15px;
}

.page-news__faq-answer .page-news__cta-button {
    margin-top: 10px;
}


/* Responsive styles */
@media (max-width: 1024px) {
    .page-news__hero-content {
        margin-top: -60px;
    }
    .page-news__main-title {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
    .page-news__hero-description {
        font-size: 1rem;
    }
    .page-news__section-title {
        font-size: 2rem;
    }
}

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

    .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,
    .page-news__hero-section,
    .page-news__hero-content,
    .page-news__feature-item,
    .page-news__category-card,
    .page-news__access-item,
    .page-news__benefit-card,
    .page-news__cta-container,
    .page-news__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-news__hero-section {
        padding-top: 10px !important; /* Small top padding for hero section */
        padding-bottom: 20px !important;
    }

    .page-news__hero-content {
        margin-top: -40px;
        padding: 15px;
    }

    .page-news__main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 10px;
    }

    .page-news__hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-news__cta-button,
    .page-news__cta-button--small,
    .page-news__cta-button--main,
    .page-news__cta-button--secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important;
    }

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

    .page-news__section {
        padding: 40px 0;
    }

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

    .page-news__text-block {
        font-size: 1rem;
    }

    .page-news__feature-list,
    .page-news__category-grid,
    .page-news__benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-news__feature-item,
    .page-news__card,
    .page-news__access-item {
        padding: 20px;
    }

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

    .page-news__card-title,
    .page-news__feature-title,
    .page-news__access-heading {
        font-size: 1.3rem;
    }

    .page-news__card-description,
    .page-news__feature-description,
    .page-news__access-text {
        font-size: 0.9rem;
    }

    .page-news__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

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