.page-news {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light body background */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for the page content */
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #002060; /* Deep blue background */
    color: #ffffff;
    overflow: hidden;
    padding-top: 0; /* Handled by shared.css body padding-top */
}

.page-news__hero-content {
    z-index: 1;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-news__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-news__btn-primary,
.page-news__btn-secondary,
.page-news__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
    box-sizing: border-box;
}

.page-news__btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #002060; /* Deep blue text */
    border: 2px solid #FFD700;
}

.page-news__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-news__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-news__btn-secondary:hover {
    background-color: #FFD700;
    color: #002060;
}

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

.page-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
}

/* General Section Styles */
.page-news__section {
    padding: 60px 20px;
    text-align: center;
}

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

.page-news__section-title {
    font-size: 2.5em;
    color: #002060;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-news__dark-section .page-news__section-title {
    color: #ffffff;
}

.page-news__subsection-title {
    font-size: 1.8em;
    color: #002060;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-news__dark-section .page-news__subsection-title {
    color: #FFD700;
}

.page-news__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__dark-section .page-news__text-block {
    color: #f0f0f0;
}

.page-news__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-news__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
}

/* News Categories Section */
.page-news__categories-section {
    background-color: #002060; /* Deep blue background */
    color: #ffffff;
}

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

.page-news__card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-news__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

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

.page-news__card-title {
    font-size: 1.4em;
    color: #002060;
    padding: 20px 20px 10px;
    margin: 0;
}

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

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

.page-news__card-description {
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.page-news__btn-link {
    color: #002060;
    padding: 10px 20px 20px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    text-align: right;
}

.page-news__btn-link:hover {
    color: #FFD700;
}

/* Call to Action Section */
.page-news__cta-section {
    background-color: #002060;
    color: #ffffff;
}

.page-news__cta-content {
    padding: 40px 15px;
}

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

/* FAQ Section */
.page-news__faq-section {
    background-color: #f8f9fa;
}

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

.page-news__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #002060;
    cursor: pointer;
    background-color: #f0f2f5;
    transition: background-color 0.3s ease;
}

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

.page-news__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
    transform: rotate(45deg);
    color: #002060;
}

.page-news__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-news__faq-item.active .page-news__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px !important;
}

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

.page-news__faq-answer a {
    color: #002060;
    text-decoration: underline;
}

.page-news__faq-answer a:hover {
    color: #FFD700;
}

/* Conclusion Section */
.page-news__conclusion-section {
    background-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news__hero-title {
        font-size: 3em;
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    /* General mobile padding */
    .page-news__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-news__hero-section {
        padding: 40px 15px;
    }
    .page-news__hero-title {
        font-size: 2.5em;
    }
    .page-news__hero-description {
        font-size: 1em;
    }
    .page-news__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-news__btn-primary,
    .page-news__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-news__section {
        padding: 40px 15px;
    }
    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-news__subsection-title {
        font-size: 1.4em;
    }
    .page-news__text-block,
    .page-news__list-item,
    .page-news__card-description {
        font-size: 0.95em;
    }

    .page-news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-news__card-image {
        height: 200px;
    }
    .page-news__card-title {
        font-size: 1.2em;
        padding: 15px 15px 8px;
    }
    .page-news__card-description {
        padding: 0 15px 15px;
    }
    .page-news__btn-link {
        padding: 8px 15px 15px;
    }

    .page-news__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-news__faq-item.active .page-news__faq-answer {
        padding: 15px !important;
    }

    /* Images responsiveness */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers that might contain images, videos, or buttons */
    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__hero-section,
    .page-news__cta-buttons,
    .page-news__faq-list,
    .page-news__grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding handled by .page-news__container for consistency */
    }
    /* Specific section for padding */
    .page-news__hero-section,
    .page-news__intro-section,
    .page-news__categories-section,
    .page-news__reliability-section,
    .page-news__cta-section,
    .page-news__faq-section,
    .page-news__conclusion-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-news__cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* Ensure content area images are not too small */
/* This rule applies to any img within .page-news, ensuring minimum display size */
.page-news img:not(.page-news__hero-image) { /* Exclude hero image for specific styling */
  min-width: 200px;
  min-height: 200px;
}
/* Override for mobile to ensure max-width 100% but still respect minimums if possible */
@media (max-width: 768px) {
    .page-news img:not(.page-news__hero-image) {
        min-width: unset; /* Remove min-width on mobile to allow shrinking */
        min-height: unset; /* Remove min-height on mobile to allow shrinking */
    }
}