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

.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
    background-color: #0A4B2C; /* Deep Green */
}

.page-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

.page-news__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #F2FFF6; /* Text Main */
}

.page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

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

.page-news__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-news__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 255, 100, 0.2);
}

.page-news__section {
    padding: 60px 20px;
    text-align: center;
}

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

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

.page-news__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 40px;
    font-weight: 700;
}

.page-news__latest-articles .page-news__section-title {
    color: #F2C14E; /* Gold */
}

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

.page-news__article-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-news__card-content {
    padding: 25px;
}

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

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

.page-news__card-title a:hover {
    color: #2AD16F; /* Lighter green from button gradient */
}

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

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

.page-news__btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2AD16F; /* Lighter green from button gradient */
    border: 2px solid #2AD16F; /* Lighter green from button gradient */
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.page-news__btn-secondary:hover {
    background: #2AD16F; /* Lighter green from button gradient */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.3);
}

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

.page-news__categories-section {
    background-color: #08160F; /* Background */
}

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

.page-news__category-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

.page-news__category-item:hover {
    transform: translateY(-5px);
}

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

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

.page-news__why-read {
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-news__feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-news__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

.page-news__how-to-use {
    background-color: #08160F; /* Background */
}

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

.page-news__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #2E7A4E; /* Border */
}

.page-news__step-title {
    font-size: 1.5rem;
    color: #2AD16F; /* Lighter green from button gradient */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news__step-item p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
}

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

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

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

.page-news__faq-item:hover {
    background-color: #1E3A2A; /* Divider */
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none;
}

.page-news__faq-question::-webkit-details-marker {
    display: none;
}

.page-news__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #2AD16F; /* Lighter green from button gradient */
    margin-left: 15px;
}

.page-news__faq-item[open] .page-news__faq-toggle {
    content: '−';
}

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

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

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

/* Global image responsiveness for content area */
.page-news img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure content area images are not too small via CSS */
.page-news__feature-icon, .page-news__article-image {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }

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

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

    .page-news__section {
        padding: 50px 15px;
    }

    .page-news__article-grid,
    .page-news__category-list,
    .page-news__features-grid,
    .page-news__steps-grid {
        gap: 20px;
    }

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

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

    .page-news__card-title {
        font-size: 1.3rem;
    }
}

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

    .page-news__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

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

    .page-news__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-news__article-grid,
    .page-news__category-list,
    .page-news__features-grid,
    .page-news__steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-news__article-card, .page-news__category-item, .page-news__step-item {
        padding: 25px;
    }

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

    .page-news__feature-icon {
        width: 180px;
        height: 180px;
    }

    .page-news__card-title {
        font-size: 1.2rem;
    }

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

    .page-news__faq-answer {
        padding: 0 20px 18px;
    }

    /* Mobile responsive images forced */
    .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__latest-articles,
    .page-news__categories-section,
    .page-news__why-read,
    .page-news__how-to-use,
    .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;
    }

    /* Mobile responsive buttons 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;
    }
    
    .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: 0;
      padding-right: 0;
      flex-direction: column !important; /* Stack buttons vertically on mobile */
      gap: 15px;
    }
}