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

.page-news__hero-section {
    display: flex;
    flex-direction: column; /* Stacks image and content vertically */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
    background-color: #08160F; /* Fallback background for hero section */
    padding-bottom: 40px; /* Add some space below hero content */
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Or appropriate max width for image display */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

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

.page-news__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-news__subtitle {
    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%); /* Button color */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-news__section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
}

.page-news__introduction-section {
    background-color: #0A4B2C; /* Deep Green */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E; /* Gold */
    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: 3px;
    background-color: #2AD16F; /* Button highlight color */
    border-radius: 2px;
}

.page-news__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #F2FFF6; /* Text Main */
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-news__link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.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 B G */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #A7D9B8; /* Text Secondary */
}

.page-news__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-news__card-title {
    font-size: 1.25rem;
    color: #F2FFF6; /* Text Main */
    padding: 15px 15px 0;
    margin: 0;
}

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

.page-news__card-link:hover {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-news__card-text {
    font-size: 0.9rem;
    padding: 10px 15px 15px;
    flex-grow: 1;
}

.page-news__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

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

.page-news__list-item .page-news__sub-title {
    margin-top: 0;
    color: #F2C14E; /* Gold */
}

.page-news__faq-section {
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-news__faq-list {
    margin-top: 40px;
}

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

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card B G */
    transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
    background-color: rgba(34, 199, 104, 0.1); /* Slightly lighter on hover */
}

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

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

.page-news__faq-answer {
    padding: 0 25px 15px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-news__faq-item[open] .page-news__faq-answer {
    max-height: 2000px; /* Sufficiently large value */
    padding: 0 25px 20px;
}

.page-news__faq-item[open] .page-news__faq-question {
    background-color: rgba(34, 199, 104, 0.15); /* Slightly darker when open */
}

/* For details tag reset */
.page-news__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-news__faq-item summary {
    list-style: none;
}

.page-news__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
    background-color: #08160F; /* Background */
}

.page-news__cta-wrapper {
    margin-top: 50px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-news__cta-button--large {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 40px;
    font-size: 1.2rem;
    min-width: 250px;
    white-space: nowrap; /* Prevent button text from wrapping on desktop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news__hero-content {
        padding: 15px;
    }
    .page-news__main-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    .page-news__subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .page-news__section-title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
    .page-news__sub-title {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
    }
    .page-news__card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding-bottom: 20px; /* Adjust padding for mobile */
    }
    .page-news__hero-image-wrapper {
        margin-bottom: 15px; /* Adjust space */
    }
    .page-news__hero-content {
        padding: 10px;
    }
    .page-news__main-title {
        font-size: 2rem;
    }
    .page-news__subtitle {
        font-size: 1rem;
    }
    .page-news__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-news__section {
        padding: 40px 15px;
    }
    .page-news__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-news__sub-title {
        font-size: 1.3rem;
    }
    .page-news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-news__card-image {
        height: 180px;
    }
    .page-news__card-title {
        font-size: 1.1rem;
    }
    .page-news__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-news__faq-answer {
        padding: 0 20px 15px;
    }
    .page-news__cta-button--large {
        position: static;
        transform: none;
        margin-top: 20px;
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important; /* Ensure it doesn't exceed parent */
        padding: 12px 15px;
        font-size: 1.1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-shadow: none; /* Remove shadow for mobile */
    }
    .page-news__cta-wrapper {
        box-shadow: none;
        border-radius: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile image adaptation - Forced */
    .page-news img {
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-news__section,
    .page-news__card,
    .page-news__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .page-news__hero-section {
      padding-left: 0 !important; /* Hero section itself doesn't need side padding */
      padding-right: 0 !important;
      padding-top: 10px !important; /* Small top padding, body handles header offset */
    }

    /* Mobile button adaptation - Forced */
    .page-news__cta-button,
    .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; /* Ensure padding is applied */
    }
    .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;
    }
}