
        /* CSS Styles */
        .page--blog {
            font-family: 'Arial', sans-serif;
            color: #333333;
            background-color: #f8f8f8;
            line-height: 1.6;
        }

        .page--blog__hero-section {
            position: relative;
            overflow: hidden;
            padding-top: 10px;
            padding-bottom: 40px;
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
        }

        .page--blog__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 400px;
        }

        .page--blog__hero-content {
            max-width: 900px;
            margin: 20px auto 0;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

        .page--blog__hero-title {
            font-size: clamp(2.2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page--blog__hero-description {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            margin-bottom: 30px;
            opacity: 0.9;
            color: #f0f0f0;
        }

        .page--blog__button {
            display: inline-block;
            background-color: #ffffff;
            color: #2563eb;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            border: 2px solid #ffffff;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog__button:hover {
            background-color: #e0e0e0;
            color: #1a4da3;
            transform: translateY(-2px);
        }

        .page--blog__latest-articles {
            padding: 60px 0;
            background-color: #f8f8f8;
        }

        .page--blog__section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2563eb;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page--blog__article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page--blog__article-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: #333333;
        }

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

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

        .page--blog__card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .page--blog__card-category {
            font-size: 0.85rem;
            color: #64748b;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page--blog__card-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
            color: #2563eb;
        }

        .page--blog__card-excerpt {
            font-size: 0.95rem;
            color: #555555;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page--blog__card-meta {
            font-size: 0.8rem;
            color: #888888;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .page--blog__view-all-button {
            display: block;
            width: fit-content;
            margin: 40px auto 0;
            background-color: #64748b;
            color: #ffffff;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog__view-all-button:hover {
            background-color: #475569;
            transform: translateY(-2px);
        }

        .page--blog__categories-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .page--blog__category-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
            list-style: none;
        }

        .page--blog__category-item {
            flex: 0 0 auto;
            box-sizing: border-box;
        }

        .page--blog__category-link {
            display: block;
            background-color: #f0f0f0;
            color: #2563eb;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease, color 0.3s ease;
            border: 1px solid #e0e0e0;
            white-space: nowrap;
            max-width: 100%;
            box-sizing: border-box;
            word-wrap: break-word;
        }

        .page--blog__category-link:hover {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page--blog__promotion-cta {
            background-color: #2563eb;
            color: #ffffff;
            padding: 60px 15px;
            text-align: center;
            margin-top: 60px;
        }

        .page--blog__cta-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .page--blog__cta-text {
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page--blog__cta-button {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #ffffff;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            display: inline-block;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--blog__cta-button:hover {
            background-color: #e0e0e0;
            color: #1a4da3;
            transform: translateY(-2px);
        }

        .page--blog__featured-articles {
            padding: 60px 0;
            background-color: #f0f0f0;
        }

        .page--blog__featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page--blog__faq-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .page--blog__faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page--blog__faq-item {
            background-color: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .page--blog__faq-item.active {
            background-color: #eaf1ff;
            border-color: #2563eb;
        }

        .page--blog__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            user-select: none;
            font-weight: 600;
            font-size: 1.1rem;
            color: #2563eb;
            transition: background-color 0.3s ease;
        }

        .page--blog__faq-question:hover {
            background-color: #eef4ff;
        }

        .page--blog__faq-question h3 {
            margin: 0;
            font-size: inherit;
            pointer-events: none; /* Prevent h3 from blocking click on parent div */
            color: inherit;
        }

        .page--blog__faq-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from blocking click on parent div */
            transition: transform 0.3s ease;
        }

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

        .page--blog__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: 0.95rem;
        }

        .page--blog__faq-item.active .page--blog__faq-answer {
            max-height: 2000px !important; /* Sufficiently large */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page--blog img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

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

            .page--blog__hero-title {
                font-size: 2rem;
            }

            .page--blog__hero-description {
                font-size: 1rem;
            }

            .page--blog__button,
            .page--blog__view-all-button,
            .page--blog__cta-button,
            .page--blog a[class*="button"],
            .page--blog 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;
                margin-left: auto;
                margin-right: auto;
            }

            .page--blog__hero-content,
            .page--blog__latest-articles,
            .page--blog__categories-section,
            .page--blog__promotion-cta,
            .page--blog__featured-articles,
            .page--blog__faq-section,
            .page--blog__article-grid,
            .page--blog__featured-grid,
            .page--blog__category-list,
            .page--blog__faq-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page--blog__article-grid,
            .page--blog__featured-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page--blog__category-list {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .page--blog__category-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .page--blog__category-link {
                width: 100%;
                text-align: center;
                padding: 12px 15px;
            }

            .page--blog__section-title,
            .page--blog__cta-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }

            .page--blog__cta-text {
                font-size: 1rem;
            }

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

            .page--blog__card-title {
                font-size: 1.15rem;
            }

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

            .page--blog__faq-answer {
                padding: 15px 20px !important;
            }
        }
    