
        .page-title {
            text-align: center;
            color: #333333;
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 60px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
            letter-spacing: -1px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .category-card {
            background: rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .category-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            background: rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.15);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #333333, #666666, #999999, #cccccc, #000000);
            background-size: 300% 100%;
            animation: gradientMove 3s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .category-card:hover::before {
            opacity: 1;
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .category-image {
            height: 220px;
            background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
            position: relative;
            overflow: hidden;
        }

        .category-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .category-card:hover .category-image::before {
            width: 120px;
            height: 120px;
            background: rgba(0, 0, 0, 0.15);
        }

        .category-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: #333333;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-icon {
            transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
        }

        .category-content {
            padding: 30px 25px;
            text-align: center;
        }

        .category-title {
            color: #333333;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-title {
            color: #000000;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .category-description {
            color: #666666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .category-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            color: #333333;
            font-size: 1.4rem;
            font-weight: 700;
            display: block;
        }

        .stat-label {
            color: #666666;
            font-size: 0.85rem;
            margin-top: 4px;
        }

        .cta-button {
            background: linear-gradient(45deg, #333333, #000000);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #000000, #333333);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: #ffffff;
        }

        /* Special gradient backgrounds for different categories */
        .category-card:nth-child(1) .category-image { background: linear-gradient(45deg, #f8f8f8, #e0e0e0); }
        .category-card:nth-child(2) .category-image { background: linear-gradient(45deg, #f0f0f0, #d8d8d8); }
        .category-card:nth-child(3) .category-image { background: linear-gradient(45deg, #eeeeee, #dcdcdc); }
        .category-card:nth-child(4) .category-image { background: linear-gradient(45deg, #f5f5f5, #e8e8e8); }
        .category-card:nth-child(5) .category-image { background: linear-gradient(45deg, #f2f2f2, #e5e5e5); }
        .category-card:nth-child(6) .category-image { background: linear-gradient(45deg, #f7f7f7, #eaeaea); }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .category-card {
                margin: 0 auto;
                max-width: 400px;
            }
        }

        /* Floating animation for subtle movement */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .category-card:nth-child(odd) {
            animation: float 6s ease-in-out infinite;
        }

        .category-card:nth-child(even) {
            animation: float 6s ease-in-out infinite reverse;
        }