        figure {
            display: flex;
            justify-content: center;
            width: 100%!important;
        }
        figure a {
            width: 100%;
        }

        .page-header {
            background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        #pageTitle {
            text-align: center;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item a:hover {
            color: white;
        }

        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.9);
        }

        .page-content {
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .page-content h1,
        .page-content h2,
        .page-content h3,
        .page-content h4,
        .page-content h5,
        .page-content h6 {
            color: var(--primary-green);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .page-content p {
            text-align: justify;
            line-height: 1.4;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        /* Content images - make them clickable for lightbox */
        .page-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
            margin: 1rem auto;
        }

        .page-content img:hover {
            transform: scale(1.01);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .gallery-section {
            margin: 3rem 0;
        }

        .gallery-title {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .overlay {
            transform: translateY(0);
        }

        .gallery-item .caption {
            font-size: 0.9rem;
            margin: 0;
        }

        /* Lightbox styles - FIXED */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

        /* Close button - FIXED positioning */
        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #333;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem 0.75rem;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .lightbox-close:hover {
            background: white;
            transform: rotate(90deg);
        }

        /* Navigation buttons - FIXED positioning */
        .lightbox-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #333;
            font-size: 1.5rem;
            padding: 1rem 1.25rem;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10001;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        /* Caption - FIXED positioning */
        .lightbox-caption {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.7);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            max-width: 80%;
            z-index: 10001;
        }

        .sidebar {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }

        .sidebar h5 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .child-pages {
            list-style: none;
            padding: 0;
        }

        .child-pages li {
            margin-bottom: 0.5rem;
        }

        .child-pages a {
            color: var(--primary-green);
            text-decoration: none;
            padding: 0.5rem 0;
            display: block;
            border-bottom: 1px solid #dee2e6;
        }

        .child-pages a:hover {
            color: #4a8068;
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 2rem 0;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                padding: 0.75rem;
                font-size: 1.25rem;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
                top: 10px;
                right: 10px;
            }

            .lightbox-caption {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
                max-width: 90%;
            }

            .sidebar {
                margin-top: 1rem;
            }
        }

        .document-image:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
