body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            background-color: #f9fafb; /* Reverted to solid background color */
        }
        /* Hide all pages by default, JavaScript will show the active one */
        .page-section {
            display: none;
        }
        .page-section.active {
            display: block;
        }

        /* Gallery specific styles */
        .gallery-container {
            position: relative;
            width: 100%;
            max-width: 600px; /* Max width for the gallery */
            height: 350px; /* Fixed height for consistency */
            overflow: hidden;
            border-radius: 1rem; /* rounded-xl */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
            margin: 0 auto; /* Center the gallery */
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .gallery-image.active {
            opacity: 1;
        }

        .gallery-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 0.75rem;
            border-radius: 9999px; /* full rounded */
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .gallery-nav-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .gallery-nav-button.left {
            left: 1rem;
        }

        .gallery-nav-button.right {
            right: 1rem;
        }

        .gallery-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

        .gallery-dot {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.6);
            border-radius: 9999px; /* full rounded */
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .gallery-dot.active {
            background-color: white;
        }