
        .page-index-latest-news {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-index-latest-news__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-top: 10px; /* Small top padding, body handles header offset */
            padding-bottom: 40px;
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
        }

        .page-index-latest-news__hero-image-wrapper {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

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

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

        .page-index-latest-news__hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-index-latest-news__hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e7ff;
        }

        .page-index-latest-news__cta-button {
            display: inline-block;
            background-color: #ffc107;
            color: #333333;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-index-latest-news__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-index-latest-news__section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 40px;
            color: #2563eb;
        }

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

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

        .page-index-latest-news__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .page-index-latest-news__card-image-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

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

        .page-index-latest-news__card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-index-latest-news__card-date {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 10px;
        }

        .page-index-latest-news__card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .page-index-latest-news__card-title a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .page-index-latest-news__card-title a:hover {
            color: #1a4a9c;
        }

        .page-index-latest-news__card-description {
            font-size: 1rem;
            color: #555555;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-index-latest-news__read-more {
            display: inline-block;
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .page-index-latest-news__read-more:hover {
            color: #1a4a9c;
            text-decoration: underline;
        }

        .page-index-latest-news__view-all-button {
            margin-top: 40px;
            background-color: #64748b;
            color: #ffffff;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-index-latest-news__view-all-button:hover {
            background-color: #4b5563;
        }

        .page-index-latest-news__promotions-section {
            background-color: #e0e7ff;
            padding: 60px 20px;
            text-align: center;
        }

        .page-index-latest-news__promotions-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 20px;
            color: #2563eb;
        }

        .page-index-latest-news__promotions-text {
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 800px;
            margin: 0 auto 30px auto;
            color: #4b5563;
        }

        .page-index-latest-news__promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 40px auto 0 auto;
        }

        .page-index-latest-news__promo-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .page-index-latest-news__promo-card:hover {
            transform: translateY(-5px);
        }

        .page-index-latest-news__promo-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            object-fit: contain;
        }

        .page-index-latest-news__promo-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2563eb;
            margin-bottom: 15px;
        }

        .page-index-latest-news__promo-description {
            font-size: 0.95rem;
            color: #555555;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .page-index-latest-news__promo-button {
            background-color: #2563eb;
            color: #ffffff;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-index-latest-news__promo-button:hover {
            background-color: #1a4a9c;
        }

        .page-index-latest-news__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .page-index-latest-news__faq-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 40px;
            color: #2563eb;
            text-align: center;
        }

        .page-index-latest-news__faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background-color: #ffffff;
            overflow: hidden;
        }

        .page-index-latest-news__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            user-select: none;
            background-color: #f0f4f8;
            color: #333333;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .page-index-latest-news__faq-question:hover {
            background-color: #e2e8f0;
        }

        .page-index-latest-news__faq-question h3 {
            margin: 0;
            pointer-events: none;
            flex-grow: 1;
            color: #2563eb;
        }

        .page-index-latest-news__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none;
            color: #2563eb;
        }

        .page-index-latest-news__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #555555;
            font-size: 1rem;
        }

        .page-index-latest-news__faq-item.active .page-index-latest-news__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-index-latest-news__faq-item.active .page-index-latest-news__faq-question {
            background-color: #e2e8f0;
        }

        .page-index-latest-news__faq-item.active .page-index-latest-news__faq-toggle {
            transform: rotate(45deg);
        }

        /* General image responsiveness */
        .page-index-latest-news img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-index-latest-news {
                font-size: 16px;
                line-height: 1.5;
            }

            .page-index-latest-news__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }

            .page-index-latest-news__hero-title {
                font-size: 2.2rem;
            }

            .page-index-latest-news__hero-description {
                font-size: 1rem;
            }

            .page-index-latest-news__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

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

            .page-index-latest-news__section-title,
            .page-index-latest-news__promotions-title,
            .page-index-latest-news__faq-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .page-index-latest-news__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-index-latest-news__card-image-wrapper {
                height: 180px;
            }

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

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

            .page-index-latest-news__card-description {
                font-size: 0.95rem;
            }

            .page-index-latest-news__promotions-section {
                padding: 40px 15px;
            }

            .page-index-latest-news__promotions-text {
                font-size: 0.95rem;
            }

            .page-index-latest-news__promotions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-index-latest-news__promo-card {
                padding: 25px;
            }

            .page-index-latest-news__promo-button {
                padding: 10px 20px;
                font-size: 0.95rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-index-latest-news__faq-section {
                padding: 40px 15px;
            }

            .page-index-latest-news__faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }

            .page-index-latest-news__faq-answer {
                padding: 15px 20px;
                font-size: 0.95rem;
            }

            .page-index-latest-news img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-index-latest-news__section,
            .page-index-latest-news__card,
            .page-index-latest-news__container,
            .page-index-latest-news__promotions-section,
            .page-index-latest-news__faq-section {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-index-latest-news__view-all-button {
                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-index-latest-news__promo-button,
            .page-index-latest-news__cta-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-index-latest-news__promo-button-group {
                display: flex;
                flex-direction: column;
                gap: 10px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-index-latest-news ul,
            .page-index-latest-news ol {
                padding-left: 20px !important;
                padding-right: 20px !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-index-latest-news li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    