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

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

.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-top: 10px; /* Small top padding for visual spacing, body handles header offset */
    box-sizing: border-box;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
}

.page-news__hero-content {
    position: relative; /* Not absolute, to ensure "image above text" rule */
    padding: 40px 20px;
    background-color: rgba(17, 39, 27, 0.9); /* Card BG with some transparency */
    border-radius: 8px;
    margin-top: -80px; /* Overlap slightly for design, but text is below image */
    z-index: 1;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-news__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__btn-secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F; /* Button top color */
    border: 2px solid #2E7A4E; /* Border */
}

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

.page-news__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-news__overview-section,
.page-news__categories-section,
.page-news__access-section,
.page-news__importance-section,
.page-news__faq-section,
.page-news__cta-section {
    padding: 60px 0;
}

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

.page-news__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

.page-news__content-wrapper p {
    max-width: 800px;
    margin: 0 auto;
    color: #A7D9B8; /* Text Secondary */
}

.page-news__image-content {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    margin: 20px 0;
    display: block;
}

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

.page-news__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6; /* Ensure text on card is light */
}

.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: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-news__card-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-news__list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
    color: #A7D9B8;
}

.page-news__list li {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #2AD16F;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news__list li strong {
    color: #F2FFF6; /* Text Main */
}

.page-news__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-news__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: #A7D9B8;
}

.page-news__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* Divider */
    border-bottom: 1px solid #2E7A4E; /* Border */
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default marker */
}

.page-news__faq-item summary:hover {
    background-color: #2E7A4E; /* Border */
}

.page-news__faq-item summary::-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.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Button top color */
}

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

.page-news__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-news__cta-text {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-news__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }
    .page-news__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-news__section-title {
        font-size: clamp(1.6em, 4.5vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding-top: 10px !important; /* body already handles header offset */
    }
    .page-news__hero-image {
        max-height: 350px;
    }
    .page-news__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }
    .page-news__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-news__hero-description {
        font-size: 1em;
    }
    .page-news__section-title {
        font-size: clamp(1.4em, 5.5vw, 2em);
        padding-top: 40px;
    }
    .page-news__overview-section,
    .page-news__categories-section,
    .page-news__access-section,
    .page-news__importance-section,
    .page-news__faq-section,
    .page-news__cta-section {
        padding: 40px 0;
    }
    .page-news__container {
        padding: 0 15px;
    }
    .page-news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-news__card-image {
        height: 150px;
    }
    .page-news__card-title {
        font-size: 1.2em;
    }
    .page-news__list li {
        padding: 12px 15px;
    }
    .page-news__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-news__faq-answer {
        padding: 15px 20px;
    }
    
    /* Image responsiveness */
    .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__overview-section,
    .page-news__categories-section,
    .page-news__access-section,
    .page-news__importance-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: hidden !important; /* Ensure no overflow */
    }

    /* Button responsiveness */
    .page-news__btn-primary,
    .page-news__btn-secondary,
    .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;
      padding-right: 15px;
    }
    .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;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }
    .page-news__cta-buttons {
      display: flex;
      flex-direction: column;
    }
}