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

        .page--g__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-top: 10px; /* Minimal top padding, rely on body for header offset */
            padding-bottom: 40px;
            text-align: center;
        }

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

        .page--g__hero-content {
            max-width: 900px;
            margin: 20px auto 0;
            padding: 0 15px;
        }

        .page--g__main-title {
            font-size: clamp(2em, 4vw, 3.2em);
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .page--g__hero-description {
            font-size: 1.1em;
            color: #64748b;
            margin-bottom: 30px;
        }

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

        .page--g__btn-primary,
        .page--g__btn-secondary {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1em;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page--g__btn-primary {
            background-color: #2563eb;
            color: #ffffff;
            border: 2px solid #2563eb;
        }

        .page--g__btn-primary:hover {
            background-color: #1e40af;
            border-color: #1e40af;
        }

        .page--g__btn-secondary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #2563eb;
        }

        .page--g__btn-secondary:hover {
            background-color: #e0e7ff;
            color: #1e40af;
            border-color: #1e40af;
        }

        .page--g__section {
            padding: 60px 0;
            background-color: #ffffff;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .page--g__section:nth-of-type(even) {
            background-color: #f0f4f8;
        }

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

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

        .page--g__text-block {
            font-size: 1em;
            margin-bottom: 20px;
            color: #4b5563;
        }

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

        .page--g__list-item {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #2563eb;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            color: #4b5563;
            box-sizing: border-box;
        }

        .page--g__list-item h3 {
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

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

        .page--g__image-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .page--g__image-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .page--g__image-card-title {
            font-size: 1.1em;
            color: #2563eb;
            padding: 15px;
            font-weight: 600;
        }

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

        .page--g__step-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            text-align: center;
            border-top: 4px solid #64748b;
            box-sizing: border-box;
        }

        .page--g__step-card h3 {
            color: #2563eb;
            font-size: 1.3em;
            margin-bottom: 15px;
        }

        .page--g__step-card p {
            color: #4b5563;
        }

        .page--g__faq-section {
            background-color: #f8f9fa;
            padding: 60px 0;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

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

        .page--g__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-size: 1.1em;
            font-weight: 600;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            background-color: #f0f4f8;
            border-bottom: 1px solid #e0e0e0;
        }

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

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

        .page--g__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page--g__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: #4b5563;
        }

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

        .page--g__info-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            text-align: center;
            margin-top: 40px;
            border-top: 5px solid #2563eb;
        }

        .page--g__info-card h3 {
            color: #2563eb;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .page--g__info-card p {
            color: #4b5563;
            margin-bottom: 25px;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page--g__hero-image {
                max-height: 400px;
            }
            .page--g__main-title {
                font-size: 2.8em;
            }
            .page--g__heading {
                font-size: 2.2em;
            }
            .page--g__list {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .page--g__image-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page--g__steps-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page--g {
                font-size: 16px;
                line-height: 1.6;
            }
            .page--g__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }
            .page--g__hero-image {
                max-height: 300px;
                width: 100% !important;
                height: auto !important;
            }
            .page--g__main-title {
                font-size: 2.2em;
                padding: 0 15px;
            }
            .page--g__hero-description {
                font-size: 1em;
                padding: 0 15px;
            }
            .page--g__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page--g__btn-primary,
            .page--g__btn-secondary,
            .page--g a[class*="button"],
            .page--g 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;
            }
            .page--g__section {
                padding: 40px 0;
            }
            .page--g__container {
                padding: 0 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page--g__heading {
                font-size: 1.8em;
                margin-bottom: 30px;
            }
            .page--g__list {
                grid-template-columns: 1fr;
            }
            .page--g__list-item {
                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;
            }
            .page--g__image-grid {
                grid-template-columns: 1fr;
            }
            .page--g__image-card img {
                width: 100% !important;
                height: auto !important;
                max-width: 100% !important;
            }
            .page--g__steps-grid {
                grid-template-columns: 1fr;
            }
            .page--g__step-card {
                padding: 20px;
            }
            .page--g__faq-section {
                padding: 40px 0;
            }
            .page--g__faq-question {
                padding: 15px 20px;
                font-size: 1em;
            }
            .page--g__faq-question h3 {
                font-size: 1em;
            }
            .page--g__faq-answer {
                padding: 15px 20px !important;
            }
            .page--g__info-card {
                padding: 25px;
            }
            .page--g img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
        }
    