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

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

        .page--g__hero-image {
            width: 100%;
            height: auto;
            display: block;
        }

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

        .page--g__hero-content h1 {
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.05em;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .page--g__hero-content p {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: #f0f0f0;
        }

        .page--g__btn-primary {
            display: inline-block;
            background-color: #ffc107;
            color: #212529;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--g__btn-primary:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        .page--g__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .page--g__section--dark {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page--g__section--dark h2,
        .page--g__section--dark h3 {
            color: #ffffff;
        }

        .page--g__section h2 {
            font-size: 2.5em;
            color: #2563eb;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .page--g__section h3 {
            font-size: 1.8em;
            color: #64748b;
            margin-bottom: 15px;
        }

        .page--g__section p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #333333;
        }

        .page--g__section--dark p {
            color: #f0f0f0;
        }

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

        .page--g__card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: left;
            transition: transform 0.3s ease;
            border: 1px solid #e0e0e0;
        }

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

        .page--g__card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
            display: block;
        }

        .page--g__card h4 {
            font-size: 1.5em;
            color: #2563eb;
            margin-bottom: 10px;
        }

        .page--g__card p {
            font-size: 1em;
            color: #555555;
            margin-bottom: 15px;
        }

        .page--g__card-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .page--g__card-link:hover {
            color: #1a4a9e;
        }

        .page--g__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto 40px auto;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        .page--g__faq-section h2 {
            text-align: center;
            font-size: 2.5em;
            color: #2563eb;
            margin-bottom: 40px;
        }

        .page--g__faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .page--g__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: #f0f0f0;
            cursor: pointer;
            user-select: none;
            font-weight: bold;
            color: #333333;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
        }

        .page--g__faq-question:hover {
            background-color: #e0e0e0;
        }

        .page--g__faq-question h3 {
            margin: 0;
            color: #333333;
            font-size: 1.1em;
            pointer-events: none;
        }

        .page--g__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            color: #2563eb;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .page--g__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            background-color: #ffffff;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            color: #555555;
        }

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

        .page--g__faq-item.active .page--g__faq-question {
            background-color: #e0e0e0;
        }

        .page--g__faq-item.active .page--g__faq-toggle {
            transform: rotate(45deg);
            color: #dc3545; /* Màu đỏ cho dấu trừ */
        }

        .page--g__cta-section {
            text-align: center;
            padding: 60px 20px;
            background-color: #f0f0f0;
            border-radius: 10px;
            margin-bottom: 40px;
        }

        .page--g__cta-section h2 {
            color: #2563eb;
            font-size: 2.2em;
            margin-bottom: 20px;
        }

        .page--g__cta-section p {
            color: #555555;
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .page--g__button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page--g__btn-secondary {
            display: inline-block;
            background-color: transparent;
            color: #2563eb;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            border: 2px solid #2563eb;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--g__btn-secondary:hover {
            background-color: #2563eb;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .page--g__list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .page--g__list-item {
            background-color: #e3f2fd; /* Light blue background */
            padding: 20px;
            border-radius: 8px;
            text-align: left;
            font-size: 1.05em;
            color: #2563eb;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            box-sizing: border-box;
        }

        .page--g__list-item strong {
            color: #1a4a9e;
        }

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

        @media (max-width: 1024px) {
            .page--g__hero-content h1 {
                font-size: 2.8em;
            }

            .page--g__section h2 {
                font-size: 2em;
            }

            .page--g__section h3 {
                font-size: 1.5em;
            }

            .page--g__grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page--g {
                font-size: 16px;
                line-height: 1.6;
            }
            
            .page--g__hero-section {
                padding-top: 10px !important;
            }

            .page--g__hero-content {
                padding: 30px 15px;
            }

            .page--g__hero-content h1 {
                font-size: 2.2em;
            }

            .page--g__hero-content p {
                font-size: 1em;
            }

            .page--g__btn-primary,
            .page--g__btn-secondary {
                padding: 12px 20px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                margin-bottom: 10px; /* Thêm khoảng cách giữa các nút */
            }

            .page--g__button-group {
                flex-direction: column !important; /* Xếp chồng các nút */
                gap: 10px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page--g__section {
                padding: 40px 15px;
                margin-bottom: 30px;
            }

            .page--g__section h2 {
                font-size: 1.8em;
            }

            .page--g__section h3 {
                font-size: 1.3em;
            }

            .page--g__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page--g__card {
                padding: 20px;
            }

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

            .page--g__faq-section {
                padding: 40px 15px;
                margin-bottom: 30px;
            }

            .page--g__faq-section h2 {
                font-size: 1.8em;
            }

            .page--g__faq-question,
            .page--g__faq-question h3 {
                font-size: 1em;
            }

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

            .page--g__cta-section {
                padding: 40px 15px;
            }

            .page--g__cta-section h2 {
                font-size: 1.8em;
            }

            .page--g__cta-section p {
                font-size: 1em;
            }

            .page--g img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            
            .page--g__section,
            .page--g__card,
            .page--g__container,
            .page--g__faq-section,
            .page--g__cta-section {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page--g__list {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .page--g__list-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 15px;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    