.page-latest-news {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-latest-news__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304a91 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-latest-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-latest-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-latest-news__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

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

.page-latest-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-latest-news__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold accent */
    color: #0A2463; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-latest-news__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-latest-news__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-latest-news__section:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.page-latest-news__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-latest-news__subsection-title {
    font-size: 1.8em;
    color: #0A2463; /* Dark blue */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-latest-news__paragraph {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Detail List / Articles Grid */
.page-latest-news__detail-list {
    padding-bottom: 80px;
}

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

.page-latest-news__article-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-latest-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-latest-news__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-latest-news__article-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4em;
    color: #0A2463;
}

.page-latest-news__article-card h3 a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-latest-news__article-card h3 a:hover {
    color: #FFD700;
}

.page-latest-news__article-description {
    padding: 0 20px;
    font-size: 1em;
    color: #666;
    flex-grow: 1;
}

.page-latest-news__read-more {
    display: inline-block;
    padding: 20px;
    color: #FFD700; /* Gold accent */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.page-latest-news__read-more:hover {
    color: #0A2463; /* Dark blue */
}

/* Bottom CTA Section */
.page-latest-news__cta-bottom {
    background: linear-gradient(135deg, #0A2463 0%, #1a3c7c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-latest-news__cta-bottom .page-latest-news__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-latest-news__cta-content {
    flex: 2;
    text-align: left;
}

.page-latest-news__cta-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-latest-news__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-latest-news__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold accent */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-latest-news__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-latest-news__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.page-latest-news__cta-button--primary {
    background-color: #FFD700; /* Gold accent */
    color: #0A2463; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-latest-news__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-latest-news__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700; /* Gold border */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-latest-news__cta-button--secondary:hover {
    background-color: #FFD700; /* Gold background */
    color: #0A2463; /* Dark blue text */
    transform: translateY(-2px);
}

/* Floating Ad Menu */
.page-latest-news__floating-ad-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #0A2463;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 20px;
    display: none; /* Hidden by default, shown by JS */
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: pageLatestNewsFadeInUp 0.5s ease-out forwards;
}

.page-latest-news__floating-ad-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.page-latest-news__floating-ad-close-btn:hover {
    color: #e6c200;
}

.page-latest-news__floating-ad-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-latest-news__floating-ad-text {
    font-size: 1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-latest-news__floating-ad-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-latest-news__floating-ad-button:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
}

@keyframes pageLatestNewsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news__hero-title {
        font-size: 2.8em;
    }
    .page-latest-news__hero-description {
        font-size: 1.1em;
    }
    .page-latest-news__section-title {
        font-size: 2em;
    }
    .page-latest-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-latest-news__cta-bottom .page-latest-news__container {
        flex-direction: column;
        text-align: center;
    }
    .page-latest-news__cta-content {
        text-align: center;
    }
    .page-latest-news__cta-buttons {
        justify-content: center;
    }
    .page-latest-news__cta-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-latest-news__hero {
        padding: 60px 0;
    }
    .page-latest-news__hero-title {
        font-size: 2.2em;
    }
    .page-latest-news__hero-description {
        font-size: 1em;
    }
    .page-latest-news__section {
        padding: 40px 0;
    }
    .page-latest-news__section-title {
        font-size: 1.8em;
    }
    .page-latest-news__subsection-title {
        font-size: 1.5em;
    }
    .page-latest-news__paragraph {
        font-size: 0.95em;
    }
    .page-latest-news__article-card h3 {
        font-size: 1.2em;
    }
    .page-latest-news__floating-ad-menu {
        width: 280px;
        bottom: 15px;
        right: 15px;
    }
    .page-latest-news__cta-title {
        font-size: 2.2em;
    }
    .page-latest-news__cta-description {
        font-size: 1.1em;
    }
    .page-latest-news__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-latest-news__cta-button--primary, .page-latest-news__cta-button--secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-latest-news__hero-title {
        font-size: 1.8em;
    }
    .page-latest-news__hero-description {
        font-size: 0.9em;
    }
    .page-latest-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-latest-news__section-title {
        font-size: 1.5em;
    }
    .page-latest-news__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-news__floating-ad-menu {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
    }
    .page-latest-news__cta-title {
        font-size: 1.8em;
    }
    .page-latest-news__cta-description {
        font-size: 1em;
    }
}