        /* Center the title */
        h1 {
            text-align: center;
        }

        /* Gallery container */
        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* Center items */
            gap: 20px; /* Space between items */
            padding: 20px;
        }

        /* Individual gallery item */
        .gallery-item {
            width: 100px; /* Fixed width */
            text-align: center;
        }

        /* Responsive images */
        .gallery-item img {
            width: 100px; /* Match div width */
            height: auto; /* Maintain aspect ratio */
            border-radius: 8px; /* Optional: rounded corners */
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
        }

        /* Ensure text does not break */
        .gallery-item h2 {
            font-size: 14px;
            margin-top: 5px;
            white-space: nowrap; /* Prevent text from wrapping */
            overflow: hidden;
            text-overflow: ellipsis;
        }
