.boxes-container {
            width: 90%;
            max-width: 960px;
            margin: 60px auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards 0.3s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .box {
            width: 300px;
            height: 300px;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            opacity: 0;
            transform: scale(0.9);
            cursor: pointer;
            margin: 0;
            box-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 10px 25px rgba(0, 0, 0, 0.05),
                0 15px 35px rgba(0, 0, 0, 0.05);
            background: linear-gradient(145deg, #ffffff, #f5f5f5);
        }
        
        .box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .box:hover::before {
            left: 100%;
        }
        
        .box:nth-child(1) { animation: fadeIn 0.5s forwards 0.5s; }
        .box:nth-child(2) { animation: fadeIn 0.5s forwards 0.7s; }
        .box:nth-child(3) { animation: fadeIn 0.5s forwards 0.9s; }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .box:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 
                0 10px 25px rgba(0, 0, 0, 0.08),
                0 20px 40px rgba(0, 0, 0, 0.08),
                0 30px 60px rgba(0, 0, 0, 0.08);
            background-color: #f9f9f9;
        }
        
        .box-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .box:hover .box-content {
            transform: scale(1.15);
        }
        
        .box span {
            font-size: 20px;
            font-weight: 500;
            color: #333;
            margin-top: 15px;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .box img {
            width: 60px;
            height: 60px;
            transition: all 0.3s ease;
        }
        
        .box:hover span,
        .box:hover img {
            transform: scale(1.1);
        }
        
        .box-link {
            text-decoration: none;
            color: inherit;
        }
        
        @media (max-width: 1024px) {
            .boxes-container {
                max-width: 630px;
            }
        }
        
        @media (max-width: 768px) {
            .boxes-container {
                max-width: 300px;
            }
        }
    